Logo

dev-resources.site

for different kinds of informations.

Boolean coercion

Published at
11/24/2021
Categories
javascript
tutorial
programming
shorts
Author
icncsx
Author
6 person written this
icncsx
open
Boolean coercion

Use !! to see how JavaScript would coerce a real value into a boolean-ish interpretation.

console.log(!!" ") // true
console.log(!!"")  //  false
console.log(!!"0") //  true
console.log(!!0) //  false
Enter fullscreen mode Exit fullscreen mode

Featured ones: