DevTools Tips

List all supported console functions

You've probably already used console.log() in your code to print debugging values to the Console tool in DevTools. But the console namespace actually has many other functions too!

To list them all, open the Console tool and type:

console.log(console);

Chrome, with the Console panel opened on the side in DevTools, showing the  command result, which is an object containing a list of functions such as assert, clear, debug.

Related: