#TIL : Debug js code using console.trace
I learned on 2018-01-07 about debug, javascript
Browsers provide an useful function help you debug easier than using simple console.log function.
That is console.trace, which prints a stack trace to called function.
Example :
function foo() {
var a = 1;
bar(a);
}
function bar(x) {
console.log(x);
console.trace();
}
foo();Enjoyed this?
Leave a kudo — it means a lot.
0