Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Q1. 다음 문제의 식별자 결정 과정을 설명해주세요.
A1.
goTo2F
함수 실행 컨텍스트가 콜스택에 쌓입니다. 그리고outer
렉시컬 환경에 전역 실행 컨텍스트를 연결합니다.console.log(lamp)
로 넘어와서lamp
라는 변수를 내부 스코프먼저 찾습니다.console
에 출력하고goTo2F
함수 실행 컨텍스트가 콜스택에서 빠집니다.Q2. 아래의 코드가 실행될 때 보기의 코드 실행 순서를 알맞게 나열해주세요.
A2
foo
함수 코드의 평가와 실행bar
함수 코드의 평가와 실행foo
함수 코드로 복귀Q3. 출력되는 결과를 적어주세요
A3
1️⃣ 1
2️⃣ 10
Q4. 빈칸에 알맞은 정답을 채워주세요.
실행 컨텍스트 스택은 코드의 [
실행 순서
] 를 관리하며, 렉시컬 환경은 [스코프
], [식별자
] 를 관리한다.📌 issues
#933