JS LOOP via le tableau à l'envers avec Forach

let arr = [1, 2, 3];

arr.slice().reverse().forEach(x => console.log(x))
Worried Wren