xxxxxxxxxx
const list = [1,2,3,4,5];
list.reverse(); // It changes the original array
console.log('reversed:', list);
// expected output: "reversed:" Array [5, 4, 3, 2, 1]
xxxxxxxxxx
let arr = [1,2,3]
let newArr = arr.slice().reverse(); //returns a reversed array without modifying the original
console.log(arr, newArr) //[1,2,3] [3,2,1]
xxxxxxxxxx
const array1 = ['one', 'two', 'three'];
// expected output: "array1:" Array ["one", "two", "three"]
const reversed = array1.reverse();
// expected output: "reversed:" Array ["three", "two", "one"]
xxxxxxxxxx
const fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.sort();
fruits.reverse();
xxxxxxxxxx
//The reverse() method reverses the elements in an array.
const fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.reverse();
//output >> ["Mango", "Apple", "Orange", "Banana"]
//if you find the answer is useful ,
//upvote ⇑⇑ , so can the others benefit also . @mohammad alshraideh ( ͡~ ͜ʖ ͡°)
xxxxxxxxxx
// reversing an array in javascript is kinda hard. you can't index -1.
// but i can show how you can do it in 4 lines.
var myArray = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
for (var i = myArray.length - 1; i > 0; i -= 1) {
myArray.shift();
myArray.push(i);
}
console.log(myArray); // output: [10, 9, 8, 7, 6, 5, 4, 3, 2, 1]
xxxxxxxxxx
const array1 = ['one', 'two', 'three'];
console.log('reversed:', array1.reverse());
// Note that reverse() is destructive -- it changes the original array.
console.log('array1:', array1);
// expected output: "array1:" Array ["three", "two", "one"]