Rx.Observable.prototype.skip(count)

skip

Bypasses a specified number of elements in an observable sequence and then returns the remaining elements.

参数

  1. count (Number): The number of elements to skip before returning the remaining elements.

返回值

(Observable): An observable sequence that contains the elements that occur after the specified index in the input sequence.