To use the endWith
operator from the rxjs
library in JavaScript, first, we need to import it:
index.tsx69 chars3 lines
Then, we can create an Observable using the of
operator, and use the endWith
operator to append a sequence of values to the end of the Observable:
index.tsx135 chars7 lines
In the above example, the endWith
operator appends the values 4
, 5
, and 6
to the end of the Observable, and the subscribe
method logs all the emitted values to the console.
gistlibby LogSnag