diff options
Diffstat (limited to 'files/ja/glossary/global_scope/index.html')
-rw-r--r-- | files/ja/glossary/global_scope/index.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/files/ja/glossary/global_scope/index.html b/files/ja/glossary/global_scope/index.html new file mode 100644 index 0000000000..11507e5080 --- /dev/null +++ b/files/ja/glossary/global_scope/index.html @@ -0,0 +1,23 @@ +--- +title: Global scope (グローバルスコープ) +slug: Glossary/Global_scope +tags: + - CodingScripting + - Glossary + - NeedsContent +translation_of: Glossary/Global_scope +--- +<p>プログラミング環境において、グローバルスコープとは、他のすべてのスコープを含み、他のすべてのスコープからアクセス可能な{{glossary("scope", "スコープ")}}を指します。</p> + +<p>クライアントサイド JavaScript においては、一般的にすべてのコードが実行されている Web ページがグローバルスコープとなります。</p> + +<h2 id="Learn_more" name="Learn_more">関連項目</h2> + +<h3 id="Learn_about_it" name="Learn_about_it">これについて学習する</h3> + +<ul> + <li><a href="https://developer.mozilla.org/ja/docs/Web/JavaScript/Guide/Grammar_and_types#Variable_scope">JavaScript の変数スコープ入門</a></li> + <li>Wikipedia の {{interwiki("wikipedia", "スコープ")}}</li> +</ul> + +<p> </p> |