Is there a way to loop backwards through an array using forEach (not any other kind of loop, I know how to do with with a for / standard ways) and without actua
forEach
Just use a for loop. Start at the end of the array and go backwards from there.
const array = ['blastoff', 1, 2, 3]; for (let index = array.length - 1; index >= 0; index--) { const element = array[index]; console.log(element); }