javascript:什么是 NOT NOT? (!! 操作员 )

发布于 2024-10-25 20:38:30 字数 305 浏览 1 评论 0原文

可能的重复:
什么是!! JavaScript 中的运算符?

JavaScript 中的 not not 是什么?我已经见过几次了:)

function foo(){
    return !!(window.history);
}

Possible Duplicate:
What is the !! operator in JavaScript?

What is a not not in javascript I have seen this a few times :)

function foo(){
    return !!(window.history);
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

骑趴 2024-11-01 20:38:30

我相信它用于强制布尔类型...

例如

if("true" == true){
    alert("1");
}else{
    if(!!"true" == true){
        alert("2");
    }
}

警报 2 而不是 1

i believe it is used for enforcing boolean types...

for example

if("true" == true){
    alert("1");
}else{
    if(!!"true" == true){
        alert("2");
    }
}

alerts 2 not 1

夜空下最亮的亮点 2024-11-01 20:38:30

我认为它曾经[不那么]隐式地将值转换为布尔类型

I think it used to [not so] implicitly cast value to boolean type

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文