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();