javascript best way to loop through array

JavaScript
var len = arr.length;
while (len--) {
    // blah blah
}
Source

Also in JavaScript: