オブジェクトの書き方
構造
{
キー1: 値1,
キー2: 値2,
キー3: 値3
}
例1
const book = {
title: ‘走れメロス’,
author: ‘太宰治’,
}
console.log(book);
出力
{title: ‘走れメロス’, author: ‘太宰治’}
例2
const sample = {a: 1}
console.log(typeof sample);
出力
object
例3
const book = {
title: ‘走れメロス’,
author: ‘太宰治’,
}
console.log(book.title);
console.log(book[‘title’]);
出力
走れメロス
走れメロス
コメント