Skip to content

Commit

Permalink
Update 전역 변수의 문제점.md
Browse files Browse the repository at this point in the history
  • Loading branch information
houony authored Jun 26, 2024
1 parent ee37b82 commit 78c8d70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 박성훈/week4/전역 변수의 문제점.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
>
> outer 함수의 실행 컨텍스트는 실행 컨텍스트 스택에서 제거되지만 outer 함수의 렉시컬 환경까지 소멸하는 것은 아니다. outer 함수의 렉시컬 환경은 inner 함수의 [[Environment]] 내부 슬롯에 의해 참조되고 있고, inner 함수는 전역 변수 innerFunc에 의해 참조되고 있으므로 가비지 컬렉션의 대상이 되지 않기 때문이다.
>
> > innerFunc.[[Environment]]를 이용해 외부 함수를 기억하고 접근할 수 있다. 이런 함수를 클로저라고 한다.
> > innerFunc.[[Environment]]를 이용해 외부 함수를 기억하고 접근할 수 있다. 이렇게 외부 함수에 접근할 수 있는 함수를 클로저라고 한다.
```
var x = 'global';
Expand Down

0 comments on commit 78c8d70

Please sign in to comment.