array.drop()
This method operates on an array. You typically fetch documents from a collection as a set, not an Array. For the equivalent Set method, see set instance methods. For differences between Sets and Arrays, see Sets vs. Arrays. |
Drop the first N elements of an Array.
Description
Drops a provided number of elements from an Array, beginning at element[0]. This lets you "skip" the elements.
The calling Array isn’t changed.