var arr = [1, 2, 3, 4, 5]; Object.keys(arr).reverse() .forEach(function(index) { console.log(arr[index]); });