Reverse method in javascript array

Опубликовано: 30 Апрель 2026
на канале: Profu' de geogra'
3
0

The reverse() method in JavaScript is used to reverse the order of elements in an array. It modifies the original array by rearranging its elements from the last to the first, effectively reversing their sequence. This method does not create a new array but instead mutates the existing one. It is commonly used when sorting or manipulating arrays where the order of elements needs to be flipped. The method returns the modified array, making it useful for chaining with other array methods.
let animals = ["🐶", "🐱", "🐘", "🦁", "🐯", "🐼"];
animals.reverse();
console.log(animals);