invert array order javascript code example
Example 1: reverse array javascript
const list = [1, 2, 3, 4, 5];
list.reverse();
Example 2: reverse array javascript
function reverseArray (arr){
if (arr.length === 0){
return []
}
return [arr.pop()].concat(reverseArray(arr))
}
console.log(reverseArray([1, 2, 3, 4, 5]))
Example 3: js reverse
const array1 = ['one', 'two', 'three'];
console.log('array1:', array1);
const reversed = array1.reverse();
console.log('reversed:', reversed);
console.log('array1:', array1);