Skip to content

Instantly share code, notes, and snippets.

@squalvj
Created June 3, 2019 06:29
Show Gist options
  • Save squalvj/a4dd33a2f0099e7eb71fa6caa594abd8 to your computer and use it in GitHub Desktop.
Save squalvj/a4dd33a2f0099e7eb71fa6caa594abd8 to your computer and use it in GitHub Desktop.
Javascript Truthiness
1 == 1 //->true
1 == "1" //->true
1 == true//-> true
1 == 0 //-> false
1 == [] //-> false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment