Sets the element at the specified index into the given array object
to the specified value.
Syntax
setElementAt( array , element , index )
array.setElementAt( element , index )
Parameters
array
|
the array object use.
|
element
|
the element to use.
|
index
|
which element to replace [ 0 , size - 1 ].
|
Returns
Example
ba.setElementAt( 'a', index )
|