Debugging Javascript using Console Object
Some of you might have already used Console Object in javascript to log values of a variable for debugging purposes. var arr = [‘1′,’2′,’3′,’4′,’5’]; console.log(arr); There are some interesting methods in Console API other than log. The details of Console API can be found here https://developers.google.com/chrome-developer-tools/docs/console-api Note: The link above is for Console API supported by […]