Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 346 Bytes

File metadata and controls

17 lines (16 loc) · 346 Bytes

Slow Loop Back

###Problem

/* from Google Closure 
 * from array.js, Line 63
 * 每次循環都要查找屬性值而增加開銷
*/
for (var i = fromIndex; i < arr.length; i++) {

###Solution

/*
 * Use a variable to store the value of attributes
*/
for (var i = fromIndex, len = arr.length; i < len; i++) {