import { map } from "rxjs/operators";const observable = of(1, 2, 3); const newObservable = observable.pipe(map(val => val ** 2));
確定! 回上一頁