-
Object.keys()を使用する方法:
const obj = { a: 1, b: 2, c: 3 }; const length = Object.keys(obj).length; console.log(length); // 結果: 3
-
Object.entries()を使用する方法:
const obj = { a: 1, b: 2, c: 3 }; const length = Object.entries(obj).length; console.log(length); // 結果: 3
-
for...inループを使用する方法:
const obj = { a: 1, b: 2, c: 3 }; let length = 0; for (const key in obj) { if (obj.hasOwnProperty(key)) { length++; } } console.log(length); // 結果: 3
これらの方法は、オブジェクトのプロパティの数を簡単に取得するための一般的な手法です。どの方法を選択するかは、ケースバイケースで異なる場合があります。オブジェクトのプロパティの数を取得する必要がある場合は、上記の方法のいずれかを使用してください。