Search w3schools.com:

SHARE THIS PAGE

JavaScript reverse() Method

Array Object Reference JavaScript Array Object

Example

Reverse the order of the elements in an array:

var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.reverse();

The result of fruits will be:

Mango,Apple,Orange,Banana

Try it yourself »

Definition and Usage

The reverse() method reverses the order of the elements in an array.


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The reverse() method is supported in all major browsers.


Syntax

array.reverse()

Return Value

Type Description
Array The array after it has been reversed

Technical Details

JavaScript Version: 1.1


Array Object Reference JavaScript Array Object

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]