Console Log Levels
One of the main reasons not to use console.log is that the results can be overwhelming - leaving a log statement inside a loop can quickly cause all of your output to scroll away.
One of the main reasons not to use console.log is that the results can be overwhelming - leaving a log statement inside a loop can quickly cause all of your output to scroll away.
Within your web developer console, you can use the `console.table` function to display arrays of data in a nice, spreadsheet like structure.
Because setting a breakpoint in the developer console can be a little unwieldy, you can use the `debugger;` statement inside your Javascript code to pause execution at that point.