JavaScriptオブジェクトアイテムの読み取りと削除
4675 ワード
オブジェクト表現
オブジェクトキーの追加
const person = {
'state-address': 'seoul',
nation: 'Korea',
1: 10
}
const person = {
'state-address': 'seoul',
nation: 'Korea',
1: 10
}
プロパティ値の取得
console.log(person.nation);
console.log(person.state-address);
console.log(person[state-address]); // ReferenceError
console.log(person['state-address']);
console.log(person['1'])
console.log(person[1])
console.log(person.1) // SyntaxError
プロパティの削除
const person = {
'state-address': 'seoul',
nation: 'Korea',
1: 10
}
delete person.nation;
delete person
Reference
この問題について(JavaScriptオブジェクトアイテムの読み取りと削除), 我々は、より多くの情報をここで見つけました https://velog.io/@peterpictor/JavaScript-오브젝트-프로퍼티-읽기-삭제하기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol