console:trace() 静态方法
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
语法
js
trace()
trace(object1, /* …, */ objectN)
参数
...any, ...data
可选-
Zero 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.
Example
function foo() { function bar() { console.trace(); } bar(); } foo();
In the console, the following trace will be displayed:
bar foo <anonymous>
规范
Specification |
---|
Console Standard # trace |
浏览器兼容性
BCD tables only load in the browser