| | Constant | Description |
|---|
| | contains |
Determines whether the specified object exists as an element in an Array object. |
| | initialize |
Initializes a new Array with an arbitrary number of elements (index),
with every element containing the passed parameter value or by default the null value. |
| | pierce |
Splices an array (removes an element) and returns either the entire array or the removed element. |
| | reduce |
Apply a function simultaneously against two values of the array (from left-to-right) as to reduce it to a single value. |
| | reduceRight |
Apply a function simultaneously against two values of the array (from right-to-left) as to reduce it to a single value. |
| | repeat |
Returns a new Array who contains the specified Array elements repeated count times. |
| | shuffle |
Shuffles an array. |
| | spliceInto |
Splice one array into another. |