这篇文章将为大家详细讲解有关javascript表达式是什么,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
javascript表达式有:1、算术表达式;2、字符串表达式;3、主要表达;4、数组和对象初始化器表达式;5、逻辑表达式;6、左侧表达式;7、属性访问表达式;8、对象创建表达式;9、函数定义表达式;10、调用表达式等。
本文操作环境:Windows7系统、javascript1.8.5版、DELL G3电脑
表达式是可以求值并解析为值的代码单元。 JS中的表达式可以分为几类。
算术表达式
字符串表达式
主要表达
数组和对象初始化器表达式
逻辑表达式
左侧表达式
属性访问表达式
对象创建表达式
函数定义表达式
调用表达式
算术表达式
在此类别下,取所有计算结果为数字的表达式:
1 / 2 i++ i -= 2 i * 2
字符串表达式
计算结果为字符串的表达式:
'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表达式是什么”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。