Monday, 11 February 2019

Understanding JavaScript Truthy and Falsy

List of falsy values in JavaScript:From MDN
  1. false
  2. null
  3. undefined
  4. 0
  5. NaN
  6. ''
  7. document.all
List of all Falsey values in JavaScript (all other values would be treated as Truthy).
false
0
-0
""
''
null
undefined
NaN

No comments:

Post a Comment