diff options
Diffstat (limited to 'files/ja/web/javascript/reference/global_objects/reflect/has/index.html')
-rw-r--r-- | files/ja/web/javascript/reference/global_objects/reflect/has/index.html | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/files/ja/web/javascript/reference/global_objects/reflect/has/index.html b/files/ja/web/javascript/reference/global_objects/reflect/has/index.html new file mode 100644 index 0000000000..eb077b2394 --- /dev/null +++ b/files/ja/web/javascript/reference/global_objects/reflect/has/index.html @@ -0,0 +1,99 @@ +--- +title: Reflect.has() +slug: Web/JavaScript/Reference/Global_Objects/Reflect/has +tags: + - ECMAScript 2015 + - JavaScript + - Method + - Reference + - Reflect +translation_of: Web/JavaScript/Reference/Global_Objects/Reflect/has +--- +<div>{{JSRef}}</div> + +<p>静的な <strong><code>Reflect.has()</code></strong> メソッドは、機能としては <a href="/ja/docs/Web/JavaScript/Reference/Operators/in"><code>in</code> 演算子</a>のように動作します。</p> + +<div>{{EmbedInteractiveExample("pages/js/reflect-has.html")}}</div> + +<p class="hidden">このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</p> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<pre class="syntaxbox notranslate">Reflect.has(<var>target</var>, <var>propertyKey</var>) +</pre> + +<h3 id="Parameters" name="Parameters">引数</h3> + +<dl> + <dt><code><var>target</var></code></dt> + <dd>プロパティを探す対象のオブジェクト。</dd> + <dt><code><var>propertyKey</var></code></dt> + <dd>チェックするプロパティ名。</dd> +</dl> + +<h3 id="Return_value" name="Return_value">返値</h3> + +<p>対象がプロパティを持つかどうかを示す {{jsxref("Boolean")}} 値。</p> + +<h3 id="Exceptions" name="Exceptions">例外</h3> + +<p><code><var>target</var></code> が {{jsxref("Object")}} でなかった場合、 {{jsxref("TypeError")}} が発生します。</p> + +<h2 id="Description" name="Description">解説</h2> + +<p><code>Reflect.has</code> メソッドは、オブジェクトプロパティがあるかをチェックします。機能としては <a href="/ja/docs/Web/JavaScript/Reference/Operators/in"><code>in</code> 演算子</a>のように動作します。</p> + +<h2 id="Examples" name="Examples">例</h2> + +<h3 id="Using_Reflect.has" name="Using_Reflect.has">Reflect.has() の使用</h3> + +<pre class="brush: js notranslate">Reflect.has({x: 0}, 'x') // true +Reflect.has({x: 0}, 'y') // false + +// プロトタイプチェーンのプロパティがあるため、true が返る +Reflect.has({x: 0}, 'toString') + +// Proxy with .has() handler method +obj = new Proxy({}, { + has(t, k) { return k.startsWith('door') } +}); +Reflect.has(obj, 'doorbell') // true +Reflect.has(obj, 'dormitory') // false +</pre> + +<p><code>Reflect.has</code> は継承されたプロパティについて <code>true</code> を返し、これは <a href="/en-US/docs/Web/JavaScript/Reference/Operators/in"><code>in</code> 演算子</a>と同様です。</p> + +<pre class="brush: js notranslate">const a = {foo: 123} +const b = {__proto__: a} +const c = {__proto__: b} +// The prototype chain is: c -> b -> a +Reflect.has(c, 'foo') // true +</pre> + +<h2 id="Specifications" name="Specifications">仕様書</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">仕様書</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('ESDraft', '#sec-reflect.has', 'Reflect.has')}}</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + +<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div> + +<p>{{Compat("javascript.builtins.Reflect.has")}}</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li>{{jsxref("Reflect")}}</li> + <li><a href="/ja/docs/Web/JavaScript/Reference/Operators/in"><code>in</code> 演算子</a></li> +</ul> |