.reverse()

Anonymous contributors
Anonymous contributors
Published Jun 21, 2021Updated Sep 3, 2021
Contribute to Docs

Reverses the order of the elements of an array in place and returns the reversed array.

Syntax

The reverse() method does not take any parameters.

array.reverse();

Examples

Reverse the elements in an array:

const numbers = [5, 2, 9];
numbers.reverse();
console.log(numbers);
// Output: [9, 2, 5]

All contributors

Looking to contribute?

Learn JavaScript on Codecademy