| ||
The push() method "pushes" the elements to the end of the array in the order they were listed. | ||
arg1,...argN are elements to be pushed to the end of the array | ||
It returns the last element added to the end of the array, which is also the last argument in the parameter list. | ||
The following example uses the push() Method to Add Elements to the End of an Array. | ||
|