Javascript 式には、1. 算術式、2. 文字列式、3. メイン式、4. 配列およびオブジェクト初期化式、5. 論理式、6. 左側の式、式、7. プロパティ アクセスが含まれます。式; 8. オブジェクト作成式; 9. 関数定義式; 10. 呼び出し式など
この記事の動作環境: Windows 7 システム、JavaScript バージョン 1.8.5、DELL G3 コンピューター
JavaScript 式?
式は、評価して値に解決できるコードの単位です。 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()
推奨学習: "
js 基本チュートリアル以上がJavaScript 式とは何ですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。