webveuje/javascript/5.操作符.md
2020-12-21 09:26:16 +08:00

52 lines
398 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 操作符
## 一元操作符
> 只能操作一个变量的操作符叫一元操作符
- ++
- --
- +
- -
## 布尔操作符
-
- &&
- ||
## 乘性操作符
- *
- /
- %
## 加性操作符
- +
- -
## 关系操作符
- \>
- \<
- \>=
- \<=
## 相等操作符
- ==
- !=
- ===
## 赋值操作符
- +=
- -=
- *=
- /=
## 逗号操作符
- var num1 = 1, num2 = 2;
- var num2 = (1,2,3,4)