オブジェクトのプロパティ存在チェック.js
2024-08-21
in演算子を使うとできます
code:example.js
const obj = {
"a": 100,
"b": null,
};
console.log("a" in obj); // Expected Log Output : <Boolean> true
console.log("c" in obj); // Expected Log Output : <Boolean> false
console.log("toString" in obj); // Expected Log Output : <Boolean> true