import { of,merge } from 'rxjs'; import { max,min,tap } from 'rxjs/operators'; const obs$ = of(5, 4, 7, 2, 8); merge( obs$.pipe(max()), ...
確定! 回上一頁