Skip to content

Instantly share code, notes, and snippets.

@MiguelCastillo
Created December 11, 2014 17:31
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 MiguelCastillo/d0e0216b38a58ab69a27 to your computer and use it in GitHub Desktop.
Save MiguelCastillo/d0e0216b38a58ab69a27 to your computer and use it in GitHub Desktop.
printStack
function printStack() {
try {
throw new TypeError("");
}
catch(ex) {
console.log(ex.stack);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment