So the have seem something like this today:
$$('input').each(function() {
// do something
});
What is the difference between that and this:
$$('input').each( // do something );
The private function on the first example is within that for loop scope, so it is not reference-able anywhere else, so what would the benefit of having it?