#nodejs
Read more stories on Hashnode
Articles with this tag
var one = 1; var one_again = 1; var one_string = "1"; // note: this is string console.log(one == one_again); // true console.log(one ===...