正文

JavaScript中表示不等于的运算符是`!=`。例如,如果你想比较两个值是否不相等,可以这样写: ```javascript let a = 5; let b = 10; console.log(a != b); // 输出:true ```