1function helloWorld (argument) {
2 alert(argument);
3}
4/*Now, if you want to override this function then*/
5var origHelloWorld = window.helloWorld;
6window.helloWorld = function(argument) {
7 //your code
8 origHelloWorld(argument); // after your code if you want to call original function
9}