オブジェクトのループ

キーと値の両方

const obj = { name: 'john', age: 10, address: 'us' };
for (const [key, val] of Object.entries(obj)) {
  console.log(key, val);
}

トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS