DEV Community

Md Shah Jalal
Md Shah Jalal

Posted on

What are the Truthy and Falsy values in JavaScript?

List of falsy values:

  • False
  • Null
  • Undefined
  • 0
  • NaN
  • Empty string

Truthy is everything that is not falsy.

Top comments (0)