Merge pull request #18 from npnjuguna/npnjuguna-if-else-if-example-fix

if else if example fix
pull/20/head
Asabeneh 5 years ago committed by GitHub
commit e403247a8d
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