stack

// 
function test() {
  try {
            throw new Error();
        } catch(e) {
            console.log(e);
            console.log(e.stack, 'call stack test 函数调用堆栈');
        }



}

posted @ 2022-03-16 15:33  Running00  阅读(22)  评论(0编辑  收藏  举报