For example we have some effect:
...
switchMap(() => of(action1, action2))
...
and
...
switchMap(() => [action1, action2])
...
Do we have any differents?
For example we have some effect:
...
switchMap(() => of(action1, action2))
...
and
...
switchMap(() => [action1, action2])
...
Do we have any differents?
Copyright © 2021 Jogjafile Inc.
The second one is correct.
The first approach are 2 emits, which would notify all subscribers multiple times.