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.…

The Single Best Web Browser Debug Trick You Should Know

In today’s modern browsers such as Google Chrome, Firefox, Safari, and Microsoft Edge, there is a lesser-known trick that could 10 X increase your client-side debug skills for AKA javascript and CSS. In browser, to toggle Inspecting Element for a web page, here is usually how it is done: Locate page element for inspection on…