DEV Community

kumar_lav
kumar_lav

Posted on

All of the following values are falsy

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

Enter fullscreen mode Exit fullscreen mode

Example
true
true
false
true
false

Top comments (0)