表达式,是由数字、算符、数字分组符号(括号)、自由变量和约束变量等以能求得数值的有意义排列方法所得的组合。约束变量在表达式中已被指定数值,而自由变量则可以在表达式之外另行指定数值。表达式是可以执行并解析为值的代码单元。JavaScript表达式主要分为以下几类:
这个分类下所有表达式对数字进行求值:
1 / 2
i++
i -= 2
i * 2
对字符串求值:
'A ' + 'string'
'A ' += 'string'
这个分类下,是变量引用,字面量和常量:
2
0.02
'something'
true
false
this //the current object
undefined
i //where i is a variable or a constant
也有一些语言关键字:
function
class
function* //the generator function
yield //the generator pauser/resumer
yield* //delegate to another generator or iterator
async function* //async function expression
await //async function pause/resume/wait for completion
/pattern/i //regex
() // grouping
[] //array literal
{} //object literal
[1,2,3]
{a: 1, b: 2}
{a: {b: 1}}
逻辑表达式使用逻辑运算符,获得一个布尔值:
a && b
a || b
!a
new //create an instance of a constructor
super //calls the parent constructor
...obj //expression using the spread operator
object.property //reference a property (or method) of an object
object[property]
object['property']
new object()
new a(1)
new MyRectangle('name', 2, {a: 4})
function() {}
function(a, b) { return a * b }
(a, b) => a * b
a => a * 2
() => { return 2 }
a.x(2)
window.resize()
上述的JavaScript表达式在JavaScript脚本语言中经常出现,想要熟练掌握各种JavaScript表达式的用法,光看本文是远远不够的,我们可以在动力节点在线网站上的JavaScript视频教程详细地学习这些表达式的用法和适用场景。
代码小兵49806-11 15:28
代码小兵49806-11 15:51
代码小兵49806-11 16:22
代码小兵51603-29 17:28
暴风城-小飞04-06 20:49