Skip to content

Instantly share code, notes, and snippets.

@greycode
Created February 13, 2014 09:25
Show Gist options
  • Save greycode/8972213 to your computer and use it in GitHub Desktop.
Save greycode/8972213 to your computer and use it in GitHub Desktop.
打印 JavaScript 函数调用堆栈
/*
* 打印 JavaScript 函数调用堆栈
*/
function printCallStack() {
var i = 0;
var fun = arguments.callee;
do {
fun = fun.arguments.callee.caller;
console.log(++i + ': ' + fun);
} while (fun);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment