How to loop backwards through array in JavaScript

Arrays
By Jad Joubran · 
Last updated Dec 18, 2017
const people = ["John", "Nicole", "Jad"];

for (const person of people.reverse()) {
  console.log(person);
}
Jad
Nicole
John
Array.reverse on MDN