Recipe 16.8
Logging a Stack Trace
Demo
Check the console for output. You may need to refresh the page after opening the console.
Code
JavaScript
function foo() {
function bar() {
console.trace();
}
bar();
}
foo();
HTML
Check the console for output. You may need to refresh the page after opening the console.