Reverse an Array : Array « Data Type « JavaScript DHTML






Reverse an Array

   
    
<html>
<body>
<button onclick="var myA = new Array(10,11,12); myA.reverse(); 
                 alert(myA);">Array: REVERSE</button>
</body>
</html>

    
      
        
    
    
  








Related examples in the same category

1.Array literal
2.Create string array and reference its value
3.Concatenate Array with another Array
4.Array join()
5.Pop an element from Array
6.Unshift array
7.Convert Array to String
8.To Array Source
9.Splice an Array
10.Sort an Array
11.Sort number array ascending
12.Random sort an array of string
13.Use default sort() method to sort an array
14.shift an Array
15.Use variable as the array index
16.Use alert to output an array
17.Reference array element by string index
18.Loop through an array
19.Use string as the index and use for loop to loop through it
20.Join method with different parameters
21.Array.push
22.Array.splice