图片授权基于 www.pixabay.com 相关协议
什么是表达式?
this = 关键字
ArrayLiteral = 数组字面量
ObjectLiteral = 对象字面量
FunctionExpression = 函数表达式
ClassExpression = 类表达式
…
new NewExpression;
super();
Argument Lists(The evaluation of an argument list produces a List of values.)
a++;
a–;
–a;
++a;
= 号两边全是表达式。x 是表达式,1 也是表达式,= 号是赋值操作;
参考资料:
[1]http://lib.ru/JAVA/javascr/expr.html
[2]https://medium.com/launch-school/javascript-expressions-and-statements-4d32ac9c0e74
[3]https://www.ecma-international.org/ecma-262/9.0/#sec-ecmascript-language-expressions
[4]极客时间《JavaScript核心原理解析》
原创文章,作者:小道研究,如若转载,请注明出处:https://www.sudun.com/ask/34508.html