dwarvesf / til

Today I Learned. Our knowledge hub. List out what we've learned everyday, organized.
29 stars 1 forks source link

Shorthand for converting falsy to "false" #1

Open huygn opened 7 years ago

huygn commented 7 years ago

Use !! - negative's negative

var falsy1 = !!undefined // false
var falsy2 = !!null // false
var falsy3 = !!'' // false
var falsy4 = !!0 // false
var falsy5 = !!NaN // false

Javascript "falsy" values: http://stackoverflow.com/a/19839953/4328963