Skip to content

Instantly share code, notes, and snippets.

@codermarcos
Created November 13, 2018 12:46
Show Gist options
  • Save codermarcos/196221755e22c2c1c0c0016cd028b7ad to your computer and use it in GitHub Desktop.
Save codermarcos/196221755e22c2c1c0c0016cd028b7ad to your computer and use it in GitHub Desktop.
Igualdade estrita Javascript
1 === 1 // true
+0 === -0 // true
'1' === 1 // false
false === 0 // false
NaN === NaN // false
null === undefined // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment