What is the use of console.log?
console.log
Please explain how to use it in JavaScript, with a code example.
I really feel web programming easy when i start console.log for debugging.
var i;
If i want to check value of i runtime..
i
console.log(i);
you can check current value of i in firebug's console tab. It is specially used for debugging.