js array.reverse code example

Example 1: javascript reverse array

var arr = [34, 234, 567, 4];
print(arr);
var new_arr = arr.reverse();
print(new_arr);

Example 2: how to reverse an array in javascript

array = [1 2, 3]
reversed = array.reverse()

Example 3: reverse array javascript

var rev = arr.reverse();

Example 4: reverse array javascript

const list = [1, 2, 3, 4, 5];
list.reverse();

Example 5: 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 6: reverse array in javascript

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