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