JS loop melalui array ke belakang dengan foreach

let arr = [1, 2, 3];

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