remove(a, i)

Removes the object at index i of array a.


See also insert pop push 


Example


a = ( 2, 4, 6, 8 )

2  4  6  8

remove( a, 2 )

2  6  8