if else if example fix

pull/18/head
Patrick Njuguna 5 years ago committed by GitHub
parent 5b047b93f4
commit acc584a52f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -134,13 +134,13 @@ if (condition) {
```js
let a = 0
if (a > 0) {
console.log(`A${a} is a positive number`)
console.log(`${a} is a positive number`)
} else if (a < 0) {
print(`${a} is a negative number`)
else if (a == 0) {
print(` ${a} is zero`)
console.log(`${a} is a negative number`)
} else if (a == 0) {
console.log(`${a} is zero`)
} else {
print('${a) is not a number')
console.log(`${a} is not a number`)
}
```
@ -309,4 +309,4 @@ isRaining
🎉 CONGRATULATIONS ! 🎉
[<< Day 3](https://github.com/Asabeneh/30DaysOfJavaScript/blob/master/03_Day/03_day_booleans_operators_date.md) | [Day 5 >>](#)
[<< Day 3](https://github.com/Asabeneh/30DaysOfJavaScript/blob/master/03_Day/03_day_booleans_operators_date.md) | [Day 5 >>](#)

Loading…
Cancel
Save