原文:将truthy/falsy转换为布尔值 - 每天一个JavaScript小知识@Js中文网 · 码农进阶题库

原文地址:https://www.javascriptc.com/interview-tips/zh_cn/javascript/converting-truthy-falsy-values-to-boolean/

你可以使用!!操作符将truthyfalsy值转换为布尔值。

!!"" // false
!!0 // false
!!null // false
!!undefined // false
!!NaN // false

!!"hello" // true
!!1 // true
!!{} // true
!![] // true

扩展阅读: