reverse an array nodejs code example

Example 1: reversing an array in js

var arr=[1,2,5,6,2]
arr.reverse()

Example 2: js array reverse

[34, 234, 567, 4].reverse();

Example 3: js reverse

const array1 = ['one', 'two', 'three'];
console.log('array1:', array1);
//["one", "two", "three"]

const reversed = array1.reverse();
console.log('reversed:', reversed);
//["three", "two", "one"]

// Careful: reverse is destructive -- it changes the original array.
console.log('array1:', array1);
//["three", "two", "one"]

Example 4: reverse array in javascript

const reverseArray = arr => arr.reduce((acc, val) =>  [val, ...acc], [])

Tags:

Php Example