Skip to content

Instantly share code, notes, and snippets.

View aozora's full-sized avatar

aozora aozora

View GitHub Profile
@aozora
aozora / js-test-1.js
Last active February 4, 2016 21:43
JavaScript
var n = 123;
var s = '123';
if (n == s) {
alert('The variables were equal');
}
if (n === s) {
alert('The variables were identical');
}