Skip to content

Instantly share code, notes, and snippets.

@abhiaiyer91
Created January 26, 2015 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abhiaiyer91/0b5b9e2adfe4c53067eb to your computer and use it in GitHub Desktop.
Save abhiaiyer91/0b5b9e2adfe4c53067eb to your computer and use it in GitHub Desktop.
//DOUBLE
console.log(99 == "99"); // true
console.log(0 == false); // true
//TRIPLE
console.log(99 === "99"); // false
console.log(0 === false); // false
console.log(' \n\n\n' === 0); // false
console.log(' ' === 0); // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment