Skip to content

Instantly share code, notes, and snippets.

@aozora
Last active February 4, 2016 21:43
Show Gist options
  • Save aozora/1abd406807eb8f661c55 to your computer and use it in GitHub Desktop.
Save aozora/1abd406807eb8f661c55 to your computer and use it in GitHub Desktop.
JavaScript
var n = 123;
var s = '123';
if (n == s) {
alert('The variables were equal');
}
if (n === s) {
alert('The variables were identical');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment