gpt4 book ai didi

javascript - 有人可以解释一下这个 (!!) 运算符吗

转载 作者:行者123 更新时间:2023-11-28 14:32:57 24 4
gpt4 key购买 nike

Angular 6 已经在这里,所以在 Medium 提供的简短教程中我创建了这行代码。

else if (!!this.day4Name && !this.day5Name && days[date] !== this.day4Name) {
this.day5Name = days[date];
this.day5State = data[i].weather[0].main;
this.day5Temp = Math.round(data[i].main.temp);

}

我尝试用谷歌搜索它,但没有找到合理解释的结果。有人可以解释它的行为吗?谢谢:)

最佳答案

!! 代表双重否定,你基本上是在调用 not operator两次。

如果您想强制从任何类型强制转换为 bool 值,这很有用

例如

var somethingTruthy = {};
somethingTruthy = !!somethingTruthy //force cast to boolean
console.log(somethingTruthy); //print true

var somethingFalsy = "";
somethingFalsy = !!somethingFalsy //force cast to boolean
console.log(somethingFalsy); //print false

关于javascript - 有人可以解释一下这个 (!!) 运算符吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50795708/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com