No products in the cart.
< 1 min read
Performance
Warning
UI Policy
SN-0329
Evaluating the length of an array each time it is iterated through is inefficient.
Store the length of the array in a variable and use the variable in the evaluation statement.
10 min
var names = [‘George’, ‘Ringo’, ‘Paul’, ‘John’]; for(var i=0;i<names.length;i++){ doSomethingWith(names[i]); }
var names = [‘George’, ‘Ringo’, ‘Paul’, ‘John’]; for(var i=0,j=names.length;i<j;i++){ doSomethingWith(names[i]); }
There was a problem reporting this post.
Please confirm you want to block this member.
You will no longer be able to:
Please allow a few minutes for this process to complete.