aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroki Ito <hiroki110@gmail.com>2021-09-22 02:15:50 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2021-09-24 20:53:48 +0900
commit5addb26c91327b0c5578e562a5e0207f02bb1cee (patch)
treef1b4835ca6e3206fbefff6bb5297eb3e84a4241f
parent5cdd48b59ddd17638dfde9a30212751c40de1911 (diff)
downloadtranslated-content-5addb26c91327b0c5578e562a5e0207f02bb1cee.tar.gz
translated-content-5addb26c91327b0c5578e562a5e0207f02bb1cee.tar.bz2
translated-content-5addb26c91327b0c5578e562a5e0207f02bb1cee.zip
Update index.html
原文にあわせ、"window"に修正する変更です。
-rw-r--r--files/ja/web/javascript/reference/functions/arrow_functions/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/web/javascript/reference/functions/arrow_functions/index.html b/files/ja/web/javascript/reference/functions/arrow_functions/index.html
index b83d1bb7f2..d56af2bec4 100644
--- a/files/ja/web/javascript/reference/functions/arrow_functions/index.html
+++ b/files/ja/web/javascript/reference/functions/arrow_functions/index.html
@@ -217,7 +217,7 @@ console.log(result) // result 106
var result = add.bind(obj) // "obj" としてスコープを確立
console.log(result(1, 2, 3)) // result 106</pre>
-<p>アロー関数では、 <code>add</code> 関数は基本的に <code>window</code> (グローバル) スコープで作成されているので、 <code>this</code> は windows だと仮定されます。</p>
+<p>アロー関数では、 <code>add</code> 関数は基本的に <code>window</code> (グローバル) スコープで作成されているので、 <code>this</code> は window だと仮定されます。</p>
<pre class="brush: js">// ----------------------
// アロー関数の例