반응형
Notice
Recent Posts
Recent Comments
Link
반응형
목록호출스택 (1)
반응형
taenyLog

THE CALL STACK 함수의 호출을 스택 방식으로 기록하는 자료구조이다. 프로그램에서 요청이 들어올 때마다 순차적으로 호출 스택에 담아 처리한다. 자바스크립트는 단일쓰레드(Single Thread) 프로그래밍 언어이다. 즉 , 한번에 하나의 단일 호출 스택(Single Call Stack)을 가지고 있어서, 하나의 작업(Task)만 처리할 수 있다. The mechanism the JS interpreter uses to keep track of its place in a script that calls multiple functions. How JS " knows" what function is currently being run and what functions are caled from wit..
Web
2023. 6. 13. 04:26