The absolute fastest way to loop through a javascript array is: var len = arr.length; while (len--) { // blah blah }. See this post for a full comparison.
確定! 回上一頁