❮PreviousJavaScript ArrayReferenceNext❯ Example constfruits = ["Banana","Orange","Apple","Mango"]; fruits.reverse(); Try it Yourself » Description Thereverse()method reverses the order of the elements in an array. Thereverse()method overwrites the original array. ...