false
null
undefined
0
-0
NaN
An empty string ('')
Here's a list of numbers. What do you think? Which of them become true and which become false?
console.log(Boolean(100));
console.log(Boolean(1));
console.log(Boolean(0));
console.log(Boolean(-5));
let name = true
name = false
Example
true
true
false
true
false
Top comments (0)