인프런 커뮤니티 질문&답변
예제 코드 실행시에 RangeError: Maximum call stack size exceeded 에러가 발생해여 뭔가 잘못 쓴건가여?
작성
·
48K
0
function first() {
second();
console.log('1 번째');
}
function second() {
third();
console.log('2 번째');
}
function third() {
first();
console.log('3 번째');
}
// 메서드 실행
first();





