Open Amechi101 opened 5 years ago
In Show Paying
, what does count
do?
const observables = of(numbers, letters)
// observables: [1-2-3]-[a-b-c]X
// count: 1--2X
count
counts the number of emissions that observable completes. For example [1-2-3]
is completed that's a count of 1. Next up in the stream [a-b-c]
is completed that's a count of 2.
There is no count observable though right?
Basics
[ ] Potential Blocker: What does the
.create()
function specifically do? What is its argument signatures? Maybe we can add link to rxjs docs .create() function[ ] Suggestion: The basic section should have some problems to work thru to fully understand some of the core basics of RxJS.
RxJS in Angular
Debugging
Error on Blur
Show paying
[ ] Suggestion: Create a video maybe for this section
[ ] Error: Missing ) closing parenthesis?