|
|
|
@ -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 >>](#)
|
|
|
|
|