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:
parent
8dce063518
commit
bacf5dfc61
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
|
||||
|
||||
```js
|
||||
result = (a + b < 4) ? 'Below' : 'Over';
|
||||
let result = (a + b < 4) ? 'Below' : 'Over';
|
||||
```
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue