DEV Community

Discussion on: How Truthy and Falsy Values in JavaScript Work

Collapse
 
val_baca profile image
Valentin Baca

Solid article! Just to be fully pedantic, you missed one falsey value: -0 though it's arguable that that -0 === 0 They are separate in that Object.is(0, -0) === false