Array.dequeue Function

Removes the first element from the specified Array object and returns it.

var firstElement = Array.dequeue(array);

Arguments

Term

Definition

array

The array to remove the first element from.

Return Value

The first element of the array.

Remarks

Use the dequeue function to remove the first element from an Array object. The index value of the remaining elements in the array is reduced by one.

Example

The following example shows how to remove the first element from an array by using the dequeue function.

See Also

Reference

Array Object

Array Type Extensions

Other Resources

Language Reference