Array Type Functions
Functions
Name |
Description |
---|---|
Adds an element to the end of an Array object. |
|
Copies all the elements of the specified array to the end of an Array object. |
|
Removes all elements from an Array object. |
|
Creates a shallow copy of an Array object. |
|
Determines whether an element is in an Array object. |
|
Removes the first element from an Array object. |
|
Adds an element to the end of an Array object. Note Use the add function instead of the Array.enqueue function. |
|
Performs a specified action on each element of an Array object. |
|
Searches for the specified element of an Array object and returns its index. |
|
Inserts a value at the specified location in an Array object. |
|
Creates an Array object from a string representation. |
|
Removes the first occurrence of an element in an Array object. |
|
Removes an element at the specified location in an Array object. |