This website requires JavaScript.
Explore
Help
Sign In
theluyuan
/
webveuje
Watch
1
Star
0
Fork
0
You've already forked webveuje
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
73467822cb
Branches
Tags
View all branches
webveuje
/
javascript
/
5.操作符.md
luyuan
cf0ffb3672
js
2020-12-21 09:26:16 +08:00
398 B
Raw
Blame
History
Unescape
Escape
操作符
一元操作符
只能操作一个变量的操作符叫一元操作符
++
布尔操作符
!
&&
||
乘性操作符
/
%
加性操作符
关系操作符
>
<
>=
<=
相等操作符
==
!=
===
赋值操作符
+=
-=
*=
/=
逗号操作符
var num1 = 1, num2 = 2;
var num2 = (1,2,3,4)