John Au-Yeung
Follow
5 sierpnia 2019 · 2 min odczytu
it jest łatwy do przekonwertowania niczego Boolean w JavaScript. Wartości true zostaną przekonwertowane na true, a wartości falsy zostaną przekonwertowane na false. Istnieją 2 sposoby konwersji zmiennych na wartość logiczną., There is the Boolean
function, and there is the !!
shortcut.
There are 6 kinds of falsy values:
false
0
""
, ''
, or ``
null
undefined
NaN
— not a number valueAnything else is truthy.,