javaScript для петли, начиная с конца

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