I know this is the realm of closures and what not. But is it possible to continuously call nested anonymouse funtions?
Say I have this:
function testing(input) {
var testing = 0;
(function() {
testing = testing + 1;
})()
return "testing";
}
Can we have something like this testing()()()()()()()
?