diff --git a/2-js-basics/3-making-decisions/README.md b/2-js-basics/3-making-decisions/README.md index 43c6debf..7a43f575 100644 --- a/2-js-basics/3-making-decisions/README.md +++ b/2-js-basics/3-making-decisions/README.md @@ -125,7 +125,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: