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
The shortest reverse method I've seen is this one:
let reverse = a=>a.sort(a=>1)