Print out a quick stack trace from the Console

Umar Hansa
Umar Hansa

Print out a quick stack trace from the Console.

You can use console.trace() to get a quick and easy stack trace to better understand code execution flow.

Notes:

  • You get file names and line numbers which you can click on to navigate to the source.
  • Console.trace is compatible with the snippets feature of Chrome DevTools.
  • console.trace is part of the Console API (just like console.log)