Minor correction in the answer

Changed from
result = (a + b < 4) ? 'Below' : 'Over';
to
let result = (a + b < 4) ? 'Below' : 'Over';
This commit is contained in:
Adarsh Naidu 2019-07-23 17:43:31 +05:30 committed by GitHub
parent 8dce063518
commit bacf5dfc61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
```js ```js
result = (a + b < 4) ? 'Below' : 'Over'; let result = (a + b < 4) ? 'Below' : 'Over';
``` ```