Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 714 Bytes

File metadata and controls

23 lines (13 loc) · 714 Bytes

{% if book.isPdf %}

skip

{% else %}

{% endif %}

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

Arguments

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

Returns

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

Example