違いはありますか
var source1 = Rx.Observable.of(42);
const oneSubscription = source1.subscribe({
next: x => console.log(x)
});
oneSubscription.unsubscribe();
と
var source2 = Rx.Observable.of(42);
source2.forEach(x => console.log(x));
プロミスを作成するには、最初にサブスクライブする必要があると思いました。
ただし、source2
サブスクライブせずに機能しているだけの場合。
誰かが説明できるかもしれません。