Array.enqueue Function
Adds the specified object to the end of an Array object. This function is static and is invoked without creating an instance of the object.
Note
This function supports the client-script infrastructure and is not intended to be used directly from your code.
Array.enqueue(array, item);
Arguments
Term |
Definition |
---|---|
array |
The array to add item to. |
item |
The object to add to the end of the array. |
Remarks
Use the add function instead of the enqueue function. This function supports the client-script infrastructure and is not intended to be used directly from your code.