The console object in JavaScript has a lot more useful functions than the most frequently used console.log method. Debugging errors and finding execution flow can be a lot easier by making use of the console.trace method. It allows us to print the current stack trace where the method was called.
Writing console.trace() prints file names and line numbers of the call stack that exists when the method was invoked.
const stackTraceExample = () => {
const nestedFunction = () => {
console.trace();
}
nestedFunction();
}
stackTraceExample();
JavaScriptwill print
nestedFunction @ VM56:3
stackTraceExample @ VM56:6
(anonymous) @ VM56:9
JavaScriptWe can even pass arguments to the method:
const anotherExample = () => {
console.trace('My log statement');
}
anotherExample();
/*
VM111:2 My log statement
anotherExample @ VM111:2
(anonymous) @ VM111:5
*/
JavaScriptAnother thing to know as that the same trace is available on an error object as well.
const error = new Error('foo');
console.log(error.stack);
JavaScriptThe links in the console are clickable and we can navigate to individual files if we wanted to read the source code. This makes debugging quicker and easier. If you have any questions, feel free to drop them as a comment below.
I recently switched completely to the Brave browser and have set ad blocking to aggressive…
I was preparing a slide deck for a hackathon and decided to put in a…
I have been using npx a lot lately, especially whenever I want to use a…
Manually copy-pasting the output of a terminal command with a mouse/trackpad feels tedious. It is…
While working on a project, I wanted to do an integrity check of a file…
Popovers have been a problem that was typically solved by using a third-party solution. But…