en.javascript.info/1-js/02-first-steps/10-ifelse/5-rewrite-if-question/solution.md
Adarsh Naidu bacf5dfc61
Minor correction in the answer
Changed from
result = (a + b < 4) ? 'Below' : 'Over';
to
let result = (a + b < 4) ? 'Below' : 'Over';
2019-07-23 17:43:31 +05:30

58 B

let result = (a + b < 4) ? 'Below' : 'Over';