ホームページ > 記事 > ウェブフロントエンド > オブジェクトプロパティのドット表記とブラケット表記 – 違いは何ですか?
Dot notation is simpler and more readable. It's used when:
For example:
const person = { name: 'alice', age: 30 }; console.log(person.name); // 'alice'
Bracket notation is more flexible and allows you to:
Examples:
1. Using variables to access properties:
const person = { name: 'alice', age: 30 }; const prop = 'name'; console.log(person[prop]); // 'alice'
2.Properties with special characters or spaces:
const person = { 'first name': 'alice', age: 30 }; console.log(person['first name']); // 'alice'
3.Dynamically generated property names:
const property = 'name'; console.log(person[property]); // 'alice'
For most other cases, dot notation is preferred because it’s more readable and concise.
以上がオブジェクトプロパティのドット表記とブラケット表記 – 違いは何ですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。