JavaScript für die Schleife ab Ende

for (let i = (array.length - 1); i >= 0; i--) {
    console.log(array[i]);
}
Web Surfer