| title | ms.custom | ms.date | ms.prod | ms.reviewer | ms.suite | ms.technology | ms.tgt_pltfrm | ms.topic | f1_keywords | dev_langs | helpviewer_keywords | ms.assetid | caps.latest.revision | author | ms.author | manager | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
reverse Method (JavaScript) | Microsoft Docs |
01/18/2017 |
windows-client-threshold |
|
language-reference |
|
|
|
02ab051b-79b8-4646-b502-381671e78c12 |
11 |
mikejo5000 |
mikejo |
ghogen |
Reverses the elements in an Array.
arrayObj.reverse()
arrayObj
Required. Any Array object.
The reversed array.
The required arrayObj reference is an Array object.
The reverse method reverses the elements of an Array object in place. It does not create a new Array object during execution.
If the array is not contiguous, the reverse method creates elements in the array that fill the gaps in the array. Each of these created elements has the value undefined.
The following example illustrates the use of the reverse method.
var arr = new Array(0,1,2,3,4);
var reverseArr = arr.reverse();
document.write(reverseArr);
// Output:
// 4,3,2,1,0
[!INCLUDEjsv2]