Skip to content

Instantly share code, notes, and snippets.

@ankr
Last active December 15, 2015 02:59
Show Gist options
  • Save ankr/5190960 to your computer and use it in GitHub Desktop.
Save ankr/5190960 to your computer and use it in GitHub Desktop.
Javascript boolean type conversion. Source, Douglas Crockford.
'' == '0' // false
0 == '' // true
0 == '0' // true
false == 'false' // false
false == '0' // true
false == undefined // false
false == null // false
null == undefined // true
" \t\r\n" == 0 // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment