Skip to content

Instantly share code, notes, and snippets.

@daGrevis
Created April 25, 2012 12:02
Show Gist options
  • Select an option

  • Save daGrevis/2489236 to your computer and use it in GitHub Desktop.

Select an option

Save daGrevis/2489236 to your computer and use it in GitHub Desktop.
Weird JS
if ('0') { // Prints 'true'.
console.log('true');
} else {
console.log('false');
}
console.log('0' == false); // Prints 'true'.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment