how can i reverse the methods in javascript code example
Example 1: reverse array javascript
const list = [1, 2, 3, 4, 5];
list.reverse();
Example 2: reverse array in javascript
const reverseArray = arr => arr.reduce((acc, val) => [val, ...acc], [])