Description
Adds one or more elements to the end of an array and returns the array's new length.
Syntax
array1.push(value, ...)
Parameters
Returns
The length of the new array. example:
a = new Array("a", "b", "c", "d");
trace(a.push("e", "f"));
//output: 6
trace(a);
//output: a,b,c,d,e,f