JavaScript 比较和逻辑运算符

发布于 2024-09-04 23:53:08 字数 6274 浏览 10 评论 0

在本教程中,您将在示例的帮助下了解 比较 运算符和 逻辑 运算符 。

JavaScript 比较运算符

运算符比较两个值并返回一个布尔值: truefalse 。 运算符用于决策和循环。

OperatorDescriptionExample
==Equal to : true if the operands are equal5 == 5
!=Not equal to : true if the operands are not equal5 != 5
===Strict equal to : true if the operands are equal and of the same type5 === '5'
!==Strict not equal to : true if the operands are equal but of different type or not equal at all5 !== '5'
>Greater than : true if the left operand is greater than the right operand3 > 2
>=Greater than or equal to : true if the left operand is greater than or equal to the right operand3 >= 3
<Less than : true if the left operand is less than the right operand3 < 2
<=Less than or equal to : true if the left operand is less than or equal to the right operand2 <= 2

示例 1:等于运算符

let a = 5, b = 2, c = 'hello';

// equal to operator
console.log(a == 5);     // true
console.log(b == '2');   // true
console.log(c == 'Hello');  // false

如果操作数相等,则 == 等于 true

注意 :在 JavaScript 中, == 为运算符,而 = 是一个赋值运算符。如果错误地使用 = 而不是 == ,则可能会得到不需要的结果。


示例 2:不等于运算符

let a = 3, b = 'hello';

// not equal operator
console.log(a != 2); // true
console.log(b != 'Hello'); // true

如果操作数不相等,则 != 等于 true


示例 3:严格等于运算符

let a = 2;

// strict equal operator
console.log(a === 2); // true
console.log(a === '2'); // false

如果操作数相等且类型相同,则 === 得出 true 。这里 2‘2’ 是相同的数字,但数据类型不同。并且 === 还在比较时检查数据类型。


注意===== 之间的区别在于:

== 评估为 true ,如果操作数是相等的,然而, === 计算结果为 true 只有如果操作数是相等的,相同类型的


示例 4:严格不等于运算符

let a = 2, b = 'hello';

// strict not equal operator
console.log(a !== 2); // false
console.log(a !== '2'); // true
console.log(b !== 'Hello'); // true

如果操作数严格不相等,则 !== 等于 true 。与严格等于 === 完全相反。

在上面的示例中, 2 != '2' 给出 true 。这是因为即使它们具有相同的值,它们的类型也不同。


示例 5:大于运算符

let a = 3;

// greater than operator
console.log(a > 2); // true

> 如果左操作数大于右操作数,则结果为 true


示例 6:大于或等于运算符

let a = 3;

// greater than or equal operator
console.log(a >= 3); //true

如果左操作数大于或等于右操作数,则 >= 等于 true


示例 7:小于运算符

let a = 3, b = 2;

// less than operator
console.log(a < 2); // false
console.log(b < 3;) // true

如果左操作数小于右操作数,则 <true


示例 8:小于或等于运算符

let a = 2;

// less than or equal operator
console.log(a <= 3) // true
console.log(a <= 2); // true

如果左操作数小于或等于右操作数,则 <= 等于 true


JavaScript 逻辑运算符

逻辑运算符执行逻辑运算: ANDORNOT

OperatorDescriptionExample
&&Logical AND : true if both the operands/boolean values are true, else evaluates to falsetrue && false; // false
||Logical OR : true if either of the operands/boolean values is true . evaluates to false if both are falsetrue || false; // true
!Logical NOT : true if the operand is false and vice-versa.!true; // false

示例 9:逻辑 AND 运算符

let a = true, b = false;
let c = 4;

// logical AND
console.log(a && a); // true
console.log(a && b);  // false

console.log((c > 2) && (c < 2)); // false

&& 计算结果为 true ,如果两个操作数是 true ,否则计算结果为 false

注意: 您也可以对数字使用逻辑运算符 。在 JavaScript 中,0 为 false ,所有非零值均为 true


示例 10:逻辑或运算符

let a = true, b = false, c = 4;


// logical OR
console.log(a || b); // true
console.log(b || b); // false
console.log((c>2) || (c<2)); // true

|| 如果两个操作数中的任何一个为 true 则结果为 true 。如果两个操作数均为 false ,则结果为 false


示例 11:逻辑非运算符

let a = true, b = false;

// logical NOT
console.log(!a); // false
console.log(!b); // true

! 计算结果为 true ,如果操作数是 false ,反之亦然。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

上一篇:

下一篇:

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

0 文章
0 评论
23 人气
更多

推荐作者

linfzu01

文章 0 评论 0

可遇━不可求

文章 0 评论 0

枕梦

文章 0 评论 0

qq_3LFa8Q

文章 0 评论 0

JP

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文