diff options
author | Kisaragi <48310258+KisaragiEffective@users.noreply.github.com> | 2021-06-15 00:54:21 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-15 00:54:21 +0900 |
commit | cf73608f705eb59e0a545eefe006399d1e9c3692 (patch) | |
tree | 586249db1b85cd5f784c367d61a035fb377f0448 | |
parent | 2b02a0e46fdd8b07e124461614726f9996900273 (diff) | |
download | translated-content-cf73608f705eb59e0a545eefe006399d1e9c3692.tar.gz translated-content-cf73608f705eb59e0a545eefe006399d1e9c3692.tar.bz2 translated-content-cf73608f705eb59e0a545eefe006399d1e9c3692.zip |
fix possibly broken anchor tag (#1111)
-rw-r--r-- | files/ja/web/javascript/reference/global_objects/reflect/construct/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/web/javascript/reference/global_objects/reflect/construct/index.html b/files/ja/web/javascript/reference/global_objects/reflect/construct/index.html index f16711c6f7..38d57b8a96 100644 --- a/files/ja/web/javascript/reference/global_objects/reflect/construct/index.html +++ b/files/ja/web/javascript/reference/global_objects/reflect/construct/index.html @@ -44,7 +44,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Reflect/construct <h2 id="Description" name="Description">解説</h2> -<p><code>Reflect.construct()</code> によって、可変長引数を指定してコンストラクターを呼び出すことができます。 (これは a href="/ja/docs/Web/JavaScript/Reference/Operators/Spread_syntax">スプレッド構文と<a href="/ja/docs/Web/JavaScript/Reference/Operators/new"><code>new</code> 演算子</a> を組み合わせて使用することでも可能です。)</p> +<p><code>Reflect.construct()</code> によって、可変長引数を指定してコンストラクターを呼び出すことができます。 (これは <a href="/ja/docs/Web/JavaScript/Reference/Operators/Spread_syntax">スプレッド構文と<a href="/ja/docs/Web/JavaScript/Reference/Operators/new"><code>new</code> 演算子</a> を組み合わせて使用することでも可能です。)</p> <pre class="brush: js">let obj = new Foo(...<var>args</var>) let obj = Reflect.construct(Foo, <var>args</var>) |