JavaScript: The Definitive Guide

Previous Chapter 21
JavaScript Reference
Next
 

Array.reverse() Method

Name

Array.reverse() Method---reverse the elements of an array

Availability

Navigator 3.0

Synopsis

array.reverse()

Arguments

None.

Returns

Nothing.

Description

The reverse() method of an Array object reverses the order of the elements of an array. It does this "in place"--i.e., it rearranges the elements of the specified array, without creating a new array. If there are multiple references to array, then the new order of the array elements will be visible through all references.

Example

a = new Array(1, 2, 3); a[0] == 1, a[2] == 3;
a.reverse();    now a[0] == 3, a[2] == 1;

See Also

"Array", "Array.sort()"


Previous Home Next
Array.length Book Index Array.sort()

HTML: The Definitive Guide CGI Programming JavaScript: The Definitive Guide Programming Perl WebMaster in a Nutshell
Hosted by uCoz