We're a place where coders share, stay up-to-date and grow their careers.
In Google Chrome or in NodeJS:
> !![] true > !!"\r" true > !!"\t" true > !!"\n" true > Boolean([]) true
!![] is the same as Boolean([])
!![]
Boolean([])
In AngularJS some time ago, I remember AngularJS would consider [] to be falsy but in a later version to be truthy: stackoverflow.com/questions/357763...
[]
In Google Chrome or in NodeJS:
!![]
is the same asBoolean([])
In AngularJS some time ago, I remember AngularJS would consider
[]
to be falsy but in a later version to be truthy: stackoverflow.com/questions/357763...