Skip to content

Instantly share code, notes, and snippets.

@scriptschat
Last active September 24, 2020 12:28
Embed
What would you like to do?
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