JavaScript 中的 !! (非非) 运算符是否等同于 not 运算符的逆过程?

javascriptweb developmentfront end technologyobject oriented programming

是的,not not 运算符是 not 运算符的逆过程。如果任何值为真,则单个 ! (非) 将返回 false,而 !! 将返回相反的值 (真)。

非运算符 −

var flag=true;
console.log(!flag);

非非运算符 −

var flag=true;
console.log(!!flag);

示例

以下是代码 −

var flag=true;
console.log("The result of single !=")
console.log(!flag);
console.log("The result of single !!=")
console.log(!!flag)

要运行上述程序,您需要使用以下命令 −

node fileName.js.

这里我的文件名是 demo247.js

输出

这将在控制台上产生以下输出 −

PS C:\Users\Amit\javascript-code> node demo247.js
The result of single !=
false
The result of single !!=
True

相关文章