특정 라인에서 자바스크립트 call stack을 출력하기 위해서 다음을 사용할 수 있다.
console.log(new Error().stack);
예제:
function firstFunction() {
secondFunction();
}
function secondFunction() {
thridFunction();
}
function thridFunction() {
console.log(new Error().stack);
}
firstFunction();
출력
Error
at thridFunction (<anonymous>:10:17)
at secondFunction (<anonymous>:6:5)
at firstFunction (<anonymous>:2:5)
at <anonymous>:13:1