是个 !!(不是)运算符在JavaScript中等于不是运算符的反向过程?

是的,“非”运算符是“非”运算符的逆过程。如果任何值为true,则为single!(不是)将返回false和!! 将返回相反的值(true)。

非运算符-

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

not not运算符-

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