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)

Postmark Image

Speedy emails, satisfied customers

Are delayed transactional emails costing you user satisfaction? Postmark delivers your emails almost instantly, keeping your customers happy and connected.

Sign up

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay