ArrayUnshift
Method Signature
ArrayUnshift(array=[modifiablearray], object=[any])Arguments
Argument
Type
Required
Description
Default
Examples
Example with simple values
arr = [
1,
2,
3
];
newArrLen = arrayUnshift( arr, 0 );
writeOutput( newArrLen );
Using a member function
Additional Examples
Related
Last updated
Was this helpful?
