JavaScript Array reverse() Method
Example
Reverse the order of the elements in an array:
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.reverse();
Try it Yourself »
Definition and Usage
The reverse() method reverses the order of the elements in an array.
Browser Support
The numbers in the table specify the first browser version that fully supports the method.
Method | |||||
---|---|---|---|---|---|
reverse() | 1.0 | 5.5 | 1.0 | Yes | Yes |
Syntax
array.reverse()
Parameters
None |
Technical Details
Return Value: | An Array, representing the array after it has been reversed |
---|---|
JavaScript Version: | ECMAScript 1 |
❮ JavaScript Array Reference