It's a hell of a lot easier to 
> read than the fastest for loop syntax.
> 
> for (var i = myArray.length; --i -(-1); ) {}
> 

Actually that would be:

var l =  myArray.length;
for (var i = l; --i -(-1); ) {}

Then you're not looking up the length on every iteration......

:p

M
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to