Skip to content

Instantly share code, notes, and snippets.

@yangsu
Last active April 30, 2018 22:07
Show Gist options
  • Save yangsu/4667307 to your computer and use it in GitHub Desktop.
Save yangsu/4667307 to your computer and use it in GitHub Desktop.
JavaScript Falsy Values
'0' == false // true
'0' == 0 // true
!!'0' // true
!!0 || !!'' || !!"" || !!null || !!undefined || !!false || !!NaN // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment