Skip to content

Instantly share code, notes, and snippets.

@iwillig
Created September 16, 2014 15:12
Show Gist options
  • Save iwillig/9c17016ba5dcbcfbcab0 to your computer and use it in GitHub Desktop.
Save iwillig/9c17016ba5dcbcfbcab0 to your computer and use it in GitHub Desktop.
> 0 == '0'
true
> '0' == 0
true
> '' == 0
true
> false == ''
true
> false == '0'
true
> true == '0'
false
> true == '1'
true
> true == 'thing'
false
> true == '2'
false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment