Debugging Javascript – Go beyond console.log()

In JavaScript, the most popular (and overused) debugging method is console.log() for displaying logging information in the web browser console. For example, here’s a basic use of log() function. console.log(‘Hello!’); It works, …. but it’s also so 1990s. There are other methods provided by the web browser console that can aid you to debug better.…