Showing posts with label Javascript. Show all posts
Showing posts with label Javascript. Show all posts

Friday, December 28, 2012

Overwrite Default Javascript Funtions

We can overwrite default java script function by using the following way: For example overwrite alert function
function alert(msg) {
     console.info(msg);
}