您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。