--- title: Object.prototype.propertyIsEnumerable() slug: Web/JavaScript/Reference/Global_Objects/Object/propertyIsEnumerable tags: - JavaScript - メソッド - Object - プロトタイプ browser-compat: javascript.builtins.Object.propertyIsEnumerable translation_of: Web/JavaScript/Reference/Global_Objects/Object/propertyIsEnumerable --- {{JSRef}} **`propertyIsEnumerable()`** メソッドは、指定されたプロパティが列挙可能で、かつオブジェクト自身のプロパティであるかどうかを示す論理値を返します。 {{EmbedInteractiveExample("pages/js/object-prototype-propertyisenumerable.html", "taller")}} ## 構文 ```js propertyIsEnumerable(prop) ``` ### 引数 - `prop` - : 調べたいプロパティの名前です。 ### 返値 `true` または `false` の値で、指定されたプロパティが列挙可能であり、かつオブジェクト自身のプロパティであるかどうかを示します。 ## 解説 すべてのオブジェクトは `propertyIsEnumerable` メソッドを持っています。このメソッドはあるオブジェクトのプロパティが、プロトタイプチェーンを通じて継承されたプロパティを除いて {{jsxref("Statements/for...in", "for...in")}} ループで列挙可能かどうかを特定することができます。もしオブジェクトが指定されたプロパティを持っていない場合、このメソッドは `false` を返します。 > **Note:** 列挙可能なプロパティは {{jsxref("Statements/for...in", "for...in")}} ループで反復処理されますが、 {{jsxref("Global_Objects/Symbol", "Symbol")}} は含まれないことに留意してください。 ## 例 ### `propertyIsEnumerable` の基本的な使い方 以下の例はオブジェクトと配列での `propertyIsEnumerable` の使い方を示しています。 ```js var o = {}; var a = []; o.prop = 'is enumerable'; a[0] = 'is enumerable'; o.propertyIsEnumerable('prop'); // true を返す a.propertyIsEnumerable(0); // true を返す ``` ### ユーザー定義オブジェクトと組み込みオブジェクト 以下の例は、ユーザー定義プロパティと組み込みプロパティの列挙可能性を実証しています。 ```js var a = ['is enumerable']; a.propertyIsEnumerable(0); // true を返す a.propertyIsEnumerable('length'); // false を返す Math.propertyIsEnumerable('random'); // false を返す this.propertyIsEnumerable('Math'); // false を返す ```