Can you pop and push values to and from arrays in javascript?
can you pop/push arrays in javascript?
Collapse
X
-
Version 5.5 of Micosoft JScript adds these methods to the array object... not sure if they are available on current Client Side Javascript implementations
arrayObj.pop( )
arrayObj.push([item1 [item2 [. . . [itemN ]]]])
since its an implementation of the ECMA 262 language you might expect it to appear on the most recent browsers -
CSJS reference for array object
http://developer.netscape.com/docs/m...sref/array.htm
certainly has pop and push methods for CSJS v1.2Comment

Comment