使用 JavaScript 检查 Variable 是否等于 0

在 JavaScript 中检查 Variable 是否等于 0

Check if Variable is equal to 0 using JavaScript

使用if语句检查变量是否等于零,例如
if (myVar === 0). true如果变量等于0并且if块将运行,则相等性检查将返回。

索引.js
const num = 0; if (num === 0) { console.log('✅ the variable equals 0'); } else { console.log('⛔️ the variable does NOT equal 0'); }

我们使用
严格相等 (===)
运算符来检查值是否等于
0true如果左侧和右侧的值类型相同且相等,则运算符返回。

这里有些例子。

索引.js
console.log(0 === 0); // 👉️ true console.log(0 === '0'); // 👉️ false console.log(0 === 'zero'); // 👉️ false

如果该值等于,则运行语句中0的块。if

如果需要检查值是否不为零,可以使用
严格的不等式 (!==)
运算符。

索引.js
const num = 100; if (num !== 0) { console.log('⛔️ the variable does NOT equal 0'); } else { console.log('✅ the variable equals 0'); }

严格的不等运算符检查是左侧和右侧的值不相等。

这里有些例子。

索引.js
console.log(0 !== 0); // 👉️ false console.log(0 !== '0'); // 👉️ true console.log(0 !== 'zero'); // 👉️ true

如果值不相等,则满足条件并if运行我们的块。