호출스택(Execution Stack)
호출스택(Execution Stack)
function first() {
second();
console.log("첫 번째");
}
function second() {
third();
console.log("두 번째");
}
function third() {
console.log("세 번째");
}
first();
third();
스택오버 플로우
단일 호출 스택의 문제점
해결방법
Last updated
