.reverse()
Anonymous contributors
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
- Anonymous contributorsAnonymous contributors
- Anonymous contributors
Looking to contribute?
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.