JavaScript forとin文でオブジェクトのキーと値を取得するサンプル
環境
Windows 10 Home 64bit
Google Chrome 107.0.5304.107
構文
const オブジェクト名 = {キー1:値1,キー2:値2,…}
for(const 変数名 in オブジェクト名){処理コード}
「for…in」文を利用してオブジェクトのキーと値を取得します。
使用例
//オブジェクトの定義 const user = { name: "山田", city: "東京", age: "23" }; //オブジェクトのキーと値を取得する for (const tt in user) { console.log("キー:" + tt); console.log("値:" + user[tt]); }
実行結果
> “キー:name"
> “値:山田"
> “キー:city"
> “値:東京"
> “キー:age"
> “値:23"