I have another question about $A and similar.
Why you prefer do this
var results = [];
for (var i = 0, length = iterable.length; i < length; i++)
results.push(iterable[i]);
instead of
var length = iterable.length, results = new Array(length);
for (var i = 0; i < length; i++)
results[i] = iterable[i];
It's more faster!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Prototype: Core" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/prototype-core?hl=en
-~----------~----~----~----~------~----~------~--~---