You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
실행 컨텍스트가 생성 → 변수 선언, 함수 선언이 렉시컬 환경에 등록됨 → let, const 변수는 선언만 되고 초기화가 안됨 →TDZ에 일시적으로 놓이게 됨
즉, 실행 컨텍스트는 코드 실행시 변수, 함수, 객체가 어떻게 생기고 관리되는지에 대해 초점을 맞춘다면 TDZ는 그 과정에서 선언, 초기화가 이루어지는(let, const 대상의 변수들만) 환경이라고 이해해도 될까요?
✨ 기타 내용
실행컨텍스트, 렉시컬 환경, 클로저에 대한 흐름 및 구조도
The text was updated successfully, but these errors were encountered:
🔍 질문 내용
즉, 실행 컨텍스트는 코드 실행시 변수, 함수, 객체가 어떻게 생기고 관리되는지에 대해 초점을 맞춘다면 TDZ는 그 과정에서 선언, 초기화가 이루어지는(let, const 대상의 변수들만) 환경이라고 이해해도 될까요?
✨ 기타 내용
The text was updated successfully, but these errors were encountered: