Skip to content

Instantly share code, notes, and snippets.

@anton-gorbikov
Created April 14, 2018 19:51
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 anton-gorbikov/6479ffc06468ced6e433e41eb719070d to your computer and use it in GitHub Desktop.
Save anton-gorbikov/6479ffc06468ced6e433e41eb719070d to your computer and use it in GitHub Desktop.
Some words about == and ===
console.log(null == undefined); //true
console.log(null == null); //true
console.log(null === undefined); //false
console.log(null === null); //true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment