aboutsummaryrefslogtreecommitdiff
path: root/files/ko/glossary/스코프
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:17 -0500
commitda78a9e329e272dedb2400b79a3bdeebff387d47 (patch)
treee6ef8aa7c43556f55ddfe031a01cf0a8fa271bfe /files/ko/glossary/스코프
parent1109132f09d75da9a28b649c7677bb6ce07c40c0 (diff)
downloadtranslated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.gz
translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.bz2
translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.zip
initial commit
Diffstat (limited to 'files/ko/glossary/스코프')
-rw-r--r--files/ko/glossary/스코프/index.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/files/ko/glossary/스코프/index.html b/files/ko/glossary/스코프/index.html
new file mode 100644
index 0000000000..259cc6b9f4
--- /dev/null
+++ b/files/ko/glossary/스코프/index.html
@@ -0,0 +1,39 @@
+---
+title: 스코프
+slug: Glossary/스코프
+translation_of: Glossary/Scope
+---
+<p>현재 실행되는 컨텍스트를 말한다. 여기서 컨텍스트는  {{glossary("값","값")}}과 <strong>표현식</strong>이<strong> "표현"</strong>되거나 참조 될 수 있음을 의미한다. 만약 <strong>{{glossary("변수")}}</strong> 또는 다른 표현식이 "해당 스코프"내에 있지 않다면 사용할 수 없다. 스코프는 또한 계층적인 구조를 가지기 때문에 하위 스코프는 상위 스코프에 접근할 수 있지만 반대는 불가하다.</p>
+
+<p><strong>{{glossary("함수")}}</strong>는<strong> </strong>{{glossary("자바스크립트")}}에서 <strong>클로저 </strong>역할을 하기 때문에 스코프를 생성하므로 함수 내에 정의된 변수는 외부 함수나 다른 함수 내에서는 접근 할 수 없다. 예를 들어 다음과 같은 상황은 유효하지 않다.</p>
+
+<pre class="brush: js notranslate">function exampleFunction() {
+  var x = "declared inside function";
+  // x는 오직 exampleFunction 내부에서만 사용 가능.
+  console.log("Inside function");
+  console.log(x);
+}
+
+console.log(x); // 에러 발생</pre>
+
+<p>그러나 다음과 같은 코드는 변수가 함수 외부의 전역에서 선언되었기 때문에 유효하다. </p>
+
+<pre class="brush: js notranslate">var x = "declared outside function";
+
+exampleFunction();
+
+function exampleFunction() {
+ console.log("Inside function");
+    console.log(x);
+}
+
+console.log("Outside function");
+console.log(x);</pre>
+
+<h2 id="Learn_more">Learn more</h2>
+
+<h3 id="General_knowledge">General knowledge</h3>
+
+<ul>
+ <li>{{Interwiki("wikipedia", "Scope (computer science)")}} on Wikipedia</li>
+</ul>