Replaced ` with ; in line 128.

Just a typo fix.
pull/144/head
Sai vishnu 4 years ago committed by GitHub
parent 41c74e4875
commit 7115b3d615
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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 ? <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