jsオブジェクトの属性に関するいくつかの呼び出し方法
3510 ワード
let Tarot = {
TheFool: " ",
TheMagician: 1,
TheHighPriestess: function () {
return 'The High Priestess';
},
TheLeangle: [1, 2, 3, 4, 5]
}
ポイント方式console.log(Tarot.TheFool);
中かっこ方式console.log(Tarot['TheMagician']);
//
console.log(Tarot['TheHighPriestess']());
対象を巡る時for…inについての紹介リンク
for (const key in Tarot) {
// key , , Tarot
console.log(Tarot[key]);
// , Tarot key, undefined 。
//console.log(Tarot.key);
}
他に方法があれば、伝言をしてお互いに交流します.【一切ゼロから始まる】