how to reverse array items in javascript code example
Example 1: reversing an array in js
var arr=[1,2,5,6,2]
arr.reverse()
Example 2: reverse array javascript
const list = [1, 2, 3, 4, 5];
list.reverse();
var arr=[1,2,5,6,2]
arr.reverse()
const list = [1, 2, 3, 4, 5];
list.reverse();