Skip to content

Instantly share code, notes, and snippets.

@yonestra
Created December 5, 2011 16:23
Show Gist options
  • Save yonestra/1434169 to your computer and use it in GitHub Desktop.
Save yonestra/1434169 to your computer and use it in GitHub Desktop.
Compare of equality operator
var num = 10;
var str = "10";
alert(num == str); //true
alert(num === str); //false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment