Skip to content

Instantly share code, notes, and snippets.

@jcastellanos003
Last active March 23, 2021 12:42
Show Gist options
  • Save jcastellanos003/40c0235d1de7218c33f3d36846a02225 to your computer and use it in GitHub Desktop.
Save jcastellanos003/40c0235d1de7218c33f3d36846a02225 to your computer and use it in GitHub Desktop.
Equality
const a = false == '0'
const b = false === '0'
console.log(a)
console.log(b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment