Skip to content

Instantly share code, notes, and snippets.

@scriptschat
Last active September 24, 2020 12:28
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 scriptschat/cd4d7b3294d7d36e156e566a479eae17 to your computer and use it in GitHub Desktop.
Save scriptschat/cd4d7b3294d7d36e156e566a479eae17 to your computer and use it in GitHub Desktop.
typecoercion while using equality operator
false == 0 //true
false === 0 //false
false == '' //true
false === '' //false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment