Represents a type that includes falsy values in JavaScript. Falsy values are those that coerce to false when used in a boolean context. This includes false, an empty string (''), numeric zero (0), null, and undefined.
false
''
0
null
undefined
Represents a type that includes falsy values in JavaScript. Falsy values are those that coerce to false when used in a boolean context. This includes
false
, an empty string (''
), numeric zero (0
),null
, andundefined
.