# Using Array.prototype.reduceRight() function var arr = [1, 2, 3, 4, 5]; arr.reduceRight((_, item) => console.log(item), null);