Merge pull request #144 from saivishnu725/patch-2

Replaced ` with ; in line 128.
pull/146/head
Jen Looper 4 years ago committed by GitHub
commit 9a44192180
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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 ? <return this if true> : <return this if false>`
let variable = condition ? <return this if true> : <return this if false>
```
Below is a more tangible example:

Loading…
Cancel
Save