动力节点首页 全国咨询热线:400-8080-105

绑定手机号,登录
手机号

验证码

微信登录
手机号登录
手机号

验证码

微信登录与注册
微信扫码登录与注册

扫码关注微信公众号完成登录与注册
手机号登录
首页 > 文章

简述JavaScript中的表达式

04-29 16:47 825浏览
举报 T字号
  • 大字
  • 中字
  • 小字

表达式,是由数字、算符、数字分组符号(括号)、自由变量和约束变量等以能求得数值的有意义排列方法所得的组合。约束变量在表达式中已被指定数值,而自由变量则可以在表达式之外另行指定数值。表达式是可以执行并解析为值的代码单元。JavaScript表达式主要分为以下几类:

1.算术表达式

这个分类下所有表达式对数字进行求值:

1 / 2
i++
i -= 2
i * 2

2.字符串表达式

字符串求值:

'A ' + 'string'
'A ' += 'string'

3.原始表达式

这个分类下,是变量引用,字面量和常量:

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

4.数组和对象初始表达式

[] //array literal
{} //object literal
[1,2,3]
{a: 1, b: 2}
{a: {b: 1}}

5.逻辑表达式

逻辑表达式使用逻辑运算符,获得一个布尔值:

a && b
a || b
!a

6.Left-hand-side 表达式

new //create an instance of a constructor
super //calls the parent constructor
...obj //expression using the spread operator

7.属性访问表达式

object.property //reference a property (or method) of an object
object[property]
object['property']

8.对象构造表达式

new object()
new a(1)
new MyRectangle('name', 2, {a: 4})

9.函数定义表达式

function() {}
function(a, b) { return a * b }
(a, b) => a * b
a => a * 2
() => { return 2 }

10.调用表达式

a.x(2)
window.resize()

上述的JavaScript表达式在JavaScript脚本语言中经常出现,想要熟练掌握各种JavaScript表达式的用法,光看本文是远远不够的,我们可以在动力节点在线网站上的JavaScript视频教程详细地学习这些表达式的用法和适用场景。

0人推荐
共同学习,写下你的评论
0条评论
杨晶珍
程序员杨晶珍

98篇文章贡献357785字

相关课程 更多>

作者相关文章更多>

推荐相关文章更多>

JavaWeb的3大组件

代码小兵49806-11 15:28

全面解析Cookie技术

代码小兵49806-11 15:51

浅谈JavaWeb架构演变

代码小兵49806-11 16:22

探讨Web开发中的Session存储与管理

代码小兵51603-29 17:28

JavaScript基础知识

 暴风城-小飞04-06 20:49

发评论

举报

0/150

取消