diff options
author | Wintus <6386129+Wintus@users.noreply.github.com> | 2021-10-22 02:39:42 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-10-22 16:01:13 +0900 |
commit | a6215eb58ec44bc82558950f5036b6bd3bea605a (patch) | |
tree | 3a4954ddffd35b5a6961c895b8ebb8f3d16c48ad /files/ja/web/javascript | |
parent | c921a6c565ddc6f3eef7054903e2566e99fcc414 (diff) | |
download | translated-content-a6215eb58ec44bc82558950f5036b6bd3bea605a.tar.gz translated-content-a6215eb58ec44bc82558950f5036b6bd3bea605a.tar.bz2 translated-content-a6215eb58ec44bc82558950f5036b6bd3bea605a.zip |
fix typo in Japanese
Diffstat (limited to 'files/ja/web/javascript')
-rw-r--r-- | files/ja/web/javascript/reference/functions/arguments/callee/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/web/javascript/reference/functions/arguments/callee/index.html b/files/ja/web/javascript/reference/functions/arguments/callee/index.html index 57ce3fcab0..ab85d00187 100644 --- a/files/ja/web/javascript/reference/functions/arguments/callee/index.html +++ b/files/ja/web/javascript/reference/functions/arguments/callee/index.html @@ -47,7 +47,7 @@ translation_of: Web/JavaScript/Reference/Functions/arguments/callee return !(n > 1) ? 1 : arguments.callee(n - 1) * n; });</pre> -<p>しかし、これは実際には本当に悪い解決法でした。これは (他の <code>arguments</code>、<code>callee</code>、<code>caller</code> の問題と組み合わさって)、一般的ば場合に、インライン化と末尾再帰が不可能になるからです (特定のケースではトレースなどを通じて実現できますが、最高のコードでも、不要な検査が入るために最適ではありません)。他の大きな問題として、再帰呼び出しにおいては <code>this</code> の値が別のものになるというものがあります。例を示します。</p> +<p>しかし、これは実際には本当に悪い解決法でした。これは (他の <code>arguments</code>、<code>callee</code>、<code>caller</code> の問題と組み合わさって)、一般的な場合に、インライン化と末尾再帰が不可能になるからです (特定のケースではトレースなどを通じて実現できますが、最高のコードでも、不要な検査が入るために最適ではありません)。他の大きな問題として、再帰呼び出しにおいては <code>this</code> の値が別のものになるというものがあります。例を示します。</p> <pre class="brush: js">var global = this; |