Skip to content

Instantly share code, notes, and snippets.

@nishanths
Last active April 7, 2023 13:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nishanths/a905461514cea25a0bcd to your computer and use it in GitHub Desktop.
Save nishanths/a905461514cea25a0bcd to your computer and use it in GitHub Desktop.

Falsy values

  • false
  • null
  • undefined
  • +0, -0, NaN, 0n
  • "" (empty string)
  • document.all in browser environments

Values not on this list are truthy.

Note: "''" is truthy. It is not an empty string: it is a string that contains an empty string.

@nishanths
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment