rdrop() Function

Drops a given number of values from the right side of an array, and returns the resulting array.

Syntax

rdrop( array, number )

array: (Any Type Array) The array to modify.

number: (Integer) The number of values to drop from the array.

Returns

Any Type Array

Notes

The number value must be greater than or equal to 0.

Examples

rdrop({10, 20, 30, 40}, 1) returns 10, 20, 30

Open in Github Built: Fri, Nov 04, 2022 (07:10:52 PM)

On This Page

FEEDBACK