toggle-toggle / javascript-basic

🌱우아한 테크코스 프론트엔드 자바스크립트 기초 스터디 입니다.
9 stars 0 forks source link

[2021.03.02] 호출 스택(Call Stack) #2

Closed devhyun637 closed 3 years ago

devhyun637 commented 3 years ago

호출 스택 (Call Stack) = Excecution Stack

1. 호출 스택이란?

2. Execution Context


참고문서

https://blog.sessionstack.com/how-does-javascript-actually-work-part-1-b0bacc073cf https://blog.bitsrc.io/understanding-execution-context-and-execution-stack-in-javascript-1c9ea8642dd0 https://ui.dev/ultimate-guide-to-execution-contexts-hoisting-scopes-and-closures-in-javascript/ https://medium.com/@kkak10/lexical-environment-4e0cffcad98d https://velog.io/@paulkim/e

devhyun637 commented 3 years ago

VariableEnvironment , this, LexicalEnvironment 에 대해서 더 공부해보기 특히 this binding에 대해서!

ddongule commented 3 years ago

https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Operators/this In most cases, the value of this is determined by how a function is called (runtime binding). 호출될 때 쓰인다고 합니다!