Echo JS 0.11.0

<~>
xedcsm 3647 days ago. link parent 2 points
and that optimization isn't even a factor in v8 anymore because it caches `items.length`. Not sure about other engines.

The latter example could still be rewritten as:

for (var i=0,len=items.length; i<len; i++){
  // code is here...
}

Replies