如何在 JavaScript 中使用布尔对象?
我不明白。什么时候会使用布尔对象?
I don't understand it. When would you use the boolean object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我不明白。什么时候会使用布尔对象?
I don't understand it. When would you use the boolean object?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
实际上没有理由直接使用该对象,只需使用布尔文字或将其他值强制类型转换为布尔值(
!something
或!!something
)。作为new Boolean(false)
调用的布尔对象将计算为 true,因为对象是“true”。There's really no reason to ever use the object directly, just use boolean literals or type-coerce other values to boolean (
!something
or!!something
). A boolean object invoked asnew Boolean(false)
will evaluate to true, because an object is "truthy".