Skip to content

Instantly share code, notes, and snippets.

@st3v3nhunt
Created May 8, 2011 22:05
Show Gist options
  • Save st3v3nhunt/961726 to your computer and use it in GitHub Desktop.
Save st3v3nhunt/961726 to your computer and use it in GitHub Desktop.
JS equality operator
1 == '1'; // true
1 === '1'; // false
1 === 1; //true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment