Is there any particular reason that this sort of construct would not work in JS? (JSLint does not accept it.)
(function(function(){
}){
})()
I can see this type of chaining going on forever, or at least as far as one would want/need.
Does anyone have any thoughts?