1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
---
title: Reflect.set()
slug: Web/JavaScript/Reference/Global_Objects/Reflect/set
tags:
- ECMAScript 2015
- JavaScript
- Method
- Reference
- Reflect
translation_of: Web/JavaScript/Reference/Global_Objects/Reflect/set
---
<div>{{JSRef}}</div>
<p>静的な <strong><code>Reflect.set()</code></strong> メソッドは、オブジェクトにプロパティを設定するかのように動作します。</p>
<div>{{EmbedInteractiveExample("pages/js/reflect-set.html")}}</div>
<div class="hidden">このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</div>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox notranslate">Reflect.set(<var>target</var>, <var>propertyKey</var>, <var>value</var>[, <var>receiver</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>
<dt><code><var>value</var></code></dt>
<dd>設定する値。</dd>
<dt><code><var>receiver</var></code> {{optional_inline}}</dt>
<dd>セッターによって <code><var>target</var></code> が呼び出されたときの <code>this</code> 値を提供する。</dd>
</dl>
<h3 id="Return_value" name="Return_value">返値</h3>
<p>プロパティが成功裏に設定できたかどうかを示す {{jsxref("Boolean")}} 値。</p>
<h3 id="Exceptions" name="Exceptions">例外</h3>
<p>{{jsxref("TypeError")}}: <code><var>target</var></code> が {{jsxref("Object")}} ではなかった場合。</p>
<h2 id="Description" name="Description">解説</h2>
<p><code>Reflect.set</code> メソッドは、オブジェクトにプロパティを設定します。これはプロパティの割り当てを行い、機能としては <a href="/ja/docs/Web/JavaScript/Reference/Operators/Property_Accessors">プロパティアクセサー</a> 構文のようなものです。</p>
<h2 id="Examples" name="Examples">例</h2>
<h3 id="Using_Reflect.set" name="Using_Reflect.set">Reflect.set() の使用</h3>
<pre class="brush: js notranslate">// オブジェクト
let obj = {}
Reflect.set(obj, 'prop', 'value') // true
obj.prop // "value"
// 配列
let arr = ['duck', 'duck', 'duck']
Reflect.set(arr, 2, 'goose') // true
arr[2] // "goose"
// 配列を切り詰められる。
Reflect.set(arr, 'length', 1) // true
arr // ["duck"]
// 引数が1つだけだと、プロパティキーと値は "undefined" になる。
let obj = {}
Reflect.set(obj) // true
Reflect.getOwnPropertyDescriptor(obj, 'undefined')
// { value: undefined, writable: true, enumerable: true, configurable: 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.set', 'Reflect.set')}}</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("javascript.builtins.Reflect.set")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{jsxref("Reflect")}}</li>
<li><a href="/ja/docs/Web/JavaScript/Reference/Operators/Property_Accessors">プロパティアクセサー</a></li>
</ul>
|