Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@behreajj
Last active May 15, 2018 10:13
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 behreajj/874a9bd1abb732a16d87b37cae1bb753 to your computer and use it in GitHub Desktop.
Save behreajj/874a9bd1abb732a16d87b37cae1bb753 to your computer and use it in GitHub Desktop.
JavaScript Truthiness
console.log(Boolean(0.0)); /* false */
console.log(Boolean(1.0)); /* true */
console.log(Boolean(-0.25)); /* true */
console.log(Boolean(0.25)); /* true */
console.log(Boolean(1.25)); /* true */
console.log(0.0 == false); /* true */
console.log(1.0 == true); /* true */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment