这个加法运算符+添加数字:
这个赋值运算符=为变量赋值。
这个赋值运算符(=
) 给变量赋值:
let x = 10;
亲自试一试 »
// Assign the value 5 to x
let x = 5;
// Assign the value 2 to y
let y = 2;
// Assign the value x + y to z:
let z = x + y;
亲自试一试 »
这个加法运算符(+
) 添加数字:
这个乘法运算符(*
) 乘以数字:
JavaScript 运算符有不同类型:
算术运算符用于对数字进行算术运算:
Operator | Description |
---|---|
+ | Addition |
- | Subtraction |
* | Multiplication |
** | Exponentiation (ES2016) |
/ | Division |
% | Modulus (Division Remainder) |
++ | Increment |
-- | Decrement |
算术运算符在 JS 算术章节。
赋值运算符将值赋给 JavaScript 变量。
这个加法赋值运算符(+=
) 向变量添加一个值。
Operator | Example | Same As |
---|---|---|
= | x = y | x = y |
+= | x += y | x = x + y |
-= | x -= y | x = x - y |
*= | x *= y | x = x * y |
/= | x /= y | x = x / y |
%= | x %= y | x = x % y |
**= | x **= y | x = x ** y |
赋值运算符在 JS 作业章节。
Operator | Description |
---|---|
== | equal to |
=== | equal value and equal type |
!= | not equal |
!== | not equal value or not equal type |
> | greater than |
< | less than |
>= | greater than or equal to |
<= | less than or equal to |
? | ternary operator |
比较运算符在 JS 比较章节。
上面的所有比较运算符也可以用于字符串:
请注意,字符串是按字母顺序比较的:
这个+
也可用于添加(连接)字符串:
这个+=
赋值运算符也可用于添加(连接)字符串:
当用于字符串时,+ 运算符称为连接运算符。
两个数字相加将返回总和,而数字和字符串相加将返回一个字符串:
如果将数字和字符串相加,结果将是字符串!
Operator | Description |
---|---|
&& | logical and |
|| | logical or |
! | logical not |
逻辑运算符在 JS 比较章节。
Operator | Description |
---|---|
typeof | Returns the type of a variable |
instanceof | Returns true if an object is an instance of an object type |
类型运算符在JS 类型转换章节。
位运算符适用于 32 位数字。
Operator | Description | Example | Same as | Result | Decimal |
---|---|---|---|---|---|
& | AND | 5 & 1 | 0101 & 0001 | 0001 | 1 |
| | OR | 5 | 1 | 0101 | 0001 | 0101 | 5 |
~ | NOT | ~ 5 | ~0101 | 1010 | 10 |
^ | XOR | 5 ^ 1 | 0101 ^ 0001 | 0100 | 4 |
<< | left shift | 5 << 1 | 0101 << 1 | 1010 | 10 |
>> | right shift | 5 >> 1 | 0101 >> 1 | 0010 | 2 |
>>> | unsigned right shift | 5 >>> 1 | 0101 >>> 1 | 0010 | 2 |
上面的示例使用 4 位无符号示例。但 JavaScript 使用 32 位有符号数字。
因此,在 JavaScript 中,~ 5 不会返回 10。它将返回 -6。
~00000000000000000000000000000101 将返回 11111111111111111111111111111010
位运算符在JS 按位章节。
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!