Array.push( ) Method | Flash 5 |
add one or more elements to the end of an array |
A list of one or more values to be added to the end of array.
The new length of array.
The push( ) method appends a list of values to the end of an array as new elements. Elements are added in the order provided. It differs from concat( ) in that push( ) modifies the original array, whereas concat( ) creates a new array. It differs from unshift( ) in that push( ) adds elements at the end of an array, not the beginning.
myList = new Array (5, 6); myList.push(7); // myList is now [5, 6, 7] myList.push(10, 8, 9); // myList is now [5, 6, 7, 10, 8, 9]
Array.concat( ), Array.pop( ), Array.unshift( ); "Adding Elements to an Array," in Chapter 11