자바스크립트 런타임 & 이벤트 루프 (MDN)
자바스크립트는 이벤트 루프(event loop)에 기반해서 만들어진 동시성 모델(concurrency model)로 C와 JAVA 같은 언어들과는 좀 다르다. 웹 개발자들은 사용자에게 좀 더 매끄러운 브라우징 경험을 제공하기 위해 이벤트 루프를 사용한다. Concurrency model and the event loop JavaScript has a concurrency model based on an event loop, which is responsible for executing the code, collecting and processing events, and executing queued sub-tasks. developer.mozilla.org 자바스크립트의 런타임 스택 (Stack) 아래 ..
IT/Javascript
2020. 10. 19. 18:19