May 2001
Intermediate to advanced
720 pages
23h 24m
English
Array.push( ) Method — add one or more elements to the end of an array
Flash 5
array.push(value1, value2,...valuen)
n
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 it 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
Read now
Unlock full access