I am saving some data in order using arrays, and I want to add a function that the user can reverse the list. I can\'t think of any possible method, so if anybo
array
Array.prototype.reverse() is all you need to do this work. See compatibility table.
var myArray = [20, 40, 80, 100]; var revMyArr = [].concat(myArray).reverse(); console.log(revMyArr); // [100, 80, 40, 20]