返回介绍

JavaScript 表达式

发布于 2025-01-23 23:27:39 字数 1676 浏览 0 评论 0 收藏 0

表达式是可以计算并解析为值的代码单元。JS 中的表达式可以分为几类。

算术表达式

在此类别下,将所有评估为数字的表达式:

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()

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文