diff options
author | Florian Merz <me@fiji-flo.de> | 2021-02-11 14:48:24 +0100 |
---|---|---|
committer | Florian Merz <me@fiji-flo.de> | 2021-02-11 14:48:24 +0100 |
commit | ee778d6eea54935fd05022e0ba8c49456003381a (patch) | |
tree | 151a4cef804d8823cc8fc753b8edc693b7078241 /files/ko/glossary/스코프/index.html | |
parent | 8260a606c143e6b55a467edf017a56bdcd6cba7e (diff) | |
download | translated-content-ee778d6eea54935fd05022e0ba8c49456003381a.tar.gz translated-content-ee778d6eea54935fd05022e0ba8c49456003381a.tar.bz2 translated-content-ee778d6eea54935fd05022e0ba8c49456003381a.zip |
unslug ko: move
Diffstat (limited to 'files/ko/glossary/스코프/index.html')
-rw-r--r-- | files/ko/glossary/스코프/index.html | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/files/ko/glossary/스코프/index.html b/files/ko/glossary/스코프/index.html deleted file mode 100644 index 259cc6b9f4..0000000000 --- a/files/ko/glossary/스코프/index.html +++ /dev/null @@ -1,39 +0,0 @@ ---- -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> |