0
kicks
Performance of JavaScript Looping Techniques
I was reading Paul Irish’s (@paul_irish) recent blog post entitled Updates from all around – Dec 2009 and I saw an interesting for loop syntax that he referenced… for (var i = -1, len = arr.length; ++i < len; ) // the cool guy loop He went on further to show some performance results of the ab...