I wanted to have a method of adding functionality to pre-existing functions, so I made this:
Function.prototype.attachFunction = function(toAttach)
{
var func = this; //This is the original function, which I want to attack toAttach function to.
//Can I do this without wrapping it in a self-executing function? What's the difference?
func = (function()
{
return function()
{
func();
toAttach();
}
})();
return func; //Return the newly made function, not really important.
}
I paste this into the Google Chrome console, and there are no errors, however, it does not (or so it would seem) alter the original function at all.
f = function() {console.log("g");};
f.attachFunction(function(){console.log("New function!");});
f(); //Prints out just "g".
this? – Jonathan M Jul 14 '12 at 1:13console.log(this). It's a good practice – Sandy Gifford Jul 14 '12 at 1:40func, which does not overwrite the value of the function. Remember,funcis just a pointer to the function; it is not the function itself. – Jonathan M Jul 14 '12 at 1:53