jsオブジェクトの属性に関するいくつかの呼び出し方法


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);
}
他に方法があれば、伝言をしてお互いに交流します.
【一切ゼロから始まる】