Is there a difference between these 2 pieces of codes:
this.subject
.pipe(skip(1))
.pipe(debounceTime(200))
.pipe(takeUntil(this.unsubscribe))
.subscribe((value: any) => {
// Do whatever
});
And:
this.subject
.pipe(skip(1), debounceTime(200), takeUntil(this.unsubscribe))
.subscribe((value: any) => {
// Do whatever
});