diff --git a/2-js-basics/3-making-decisions/README.md b/2-js-basics/3-making-decisions/README.md index 3b1c34c9..c1887f1a 100644 --- a/2-js-basics/3-making-decisions/README.md +++ b/2-js-basics/3-making-decisions/README.md @@ -124,7 +124,7 @@ if (!condition) { `if...else` isn't the only way to express decision logic. You can also use something called a ternary operator. The syntax for it looks like this: ```javascript -let variable = condition ? : ` +let variable = condition ? : ``` Below is a more tangible example: