Skip to content

Instantly share code, notes, and snippets.

@scriptschat
Created September 24, 2020 12:30
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/e070179a6b78f50f2424a11760bf8317 to your computer and use it in GitHub Desktop.
Save scriptschat/e070179a6b78f50f2424a11760bf8317 to your computer and use it in GitHub Desktop.
type coercion while using != and !== operator (reference equality vs value equality)
false != 0 //false (here type coercion takes place)
false !== 0 //true (here boolean value false is evaluated against Numeric value zero)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment