und das hier wohl noch besser:
klappt auch.
Function.prototype.closure = function() {
if(!window.__funcs) window.__funcs = [];
window.__funcs.push(this);
return function () {
return window.__funcs[window.__funcs.length - 1].apply(null, arguments);
};
};
Gruß!