Skip to content

Instantly share code, notes, and snippets.

@vladanyes
Created July 16, 2019 06:11
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 vladanyes/87595620c21e28a4f5bb7add3a781991 to your computer and use it in GitHub Desktop.
Save vladanyes/87595620c21e28a4f5bb7add3a781991 to your computer and use it in GitHub Desktop.
JavaScript print call stack
console.log(new Error().stack);
// example
function firstFunction() {
secondFunction();
}
function secondFunction() {
thridFunction();
}
function thridFunction() {
console.log(new Error().stack);
}
firstFunction();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment