Array.push : Array « Data Type « JavaScript DHTML






Array.push

   

<html>
  <head>
    <title>Array literal</title>
    <script type="text/javascript" >

        
        var planets = ['m', 'v', 'a'];
        planets.push('m', 'j');
        document.write(planets);   
    </script>
  </head>
  <body>
  </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.Reverse an Array
16.Use variable as the array index
17.Use alert to output an array
18.Reference array element by string index
19.Loop through an array
20.Use string as the index and use for loop to loop through it
21.Join method with different parameters
22.Array.splice