Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@dd1994
Created December 11, 2015 05:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dd1994/f98100cc5b4334bc0860 to your computer and use it in GitHub Desktop.
Save dd1994/f98100cc5b4334bc0860 to your computer and use it in GitHub Desktop.
show function call stack
'use strict'
function baz() {
debugger
console.log('baz')
bar()
}
function bar() {
debugger
console.log('bar')
foo()
}
function foo() {
debugger
console.log('foo')
}
baz()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment