JavaScript allows you to
- get the code of the functions as a string
- create new functions by supplying a string with code
Every object has a toString() method. For functions, it returns their code (unless overriden).
cool.lol.toString();
returns function() { // contents here }.
Let us extract the body of the function from this string. It starts immediately after { and includes everything except the last }.
var code = cool.lol.toString();
var body = code.substring(code.indexOf('{') + 1, code.length - 1);
Then we add more stuff
var newBody = body + '// i would like to add my own stuff here!!!';
and create a new function using the Function constructor.
https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function
cool.lol = new Function(newBody);
Of course, there is more work to do if the new function also has to retain arguments (you have to parse them out from the function code, then give them as parameters to the Function constructor). For simplicity, in this case I assumed there are no arguments to the function.
An example implementation:
http://jsfiddle.net/QA9Zx/