This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
Note: This feature is available in Web Workers.
The console.trace() static method outputs a stack trace to the console.
Note: In some browsers, console.trace() may also output the sequence of calls and asynchronous events leading to the current console.trace() which are not on the call stack — to help identify the origin of the current event evaluation loop.
See Stack traces in the console documentation for details and examples.
console.trace() console.trace(object1, /* …, */ objectN)
objects OptionalZero or more objects to be output to console along with the trace. These are assembled and formatted the same way they would be if passed to the console.log() method.
None (undefined).
function foo() {
function bar() {
console.trace();
}
bar();
}
foo();
In the console, the following trace will be displayed:
bar foo <anonymous>
| Specification |
|---|
| Console> # trace> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
trace_static |
2 | 12 | 6 | 11 | 4 | 18 | 6 | 11 | 3.2 | 1.0 | 4.4 | 3.2 |
console.trace()console.trace()console.trace()
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/console/trace_static