I was looking to experiment with a forkJoin mainly using the accepted answer here:
Angular2 Observable.forkJoin of observable variables - ReferenceError: Observable is not defined
I'm getting the above error message as forkJoin isn't available.
Anyone know why?
import 'rxjs/add/observable/forkJoin'
, and notimport 'rxjs/add/operator/forkJoin'
. Have been bitten by that twice... – Revest