I'm trying to insert some content in a defined function, something like this:
var f = function(){
alert("Hello");
};
var e = function(){
alert('Hey');
};
f = f + e;
f();
the output will be: "Hello", and then another alert with "Hey".
Is it possible to do something like this? Please help.