Given a simple zero based, numerically indexed array:
var list = [\'Foo\', \'Bar\', \'Baz\'];
Many times, I have noticed that when someone
Speed?
for(..;..;..) loop proved to be 36 times faster than for .. in when I tested it here.
for(..;..;..)
for .. in
Link courtesy this SO answer