import { of, map, Observable } from 'rxjs';. of('World') .pipe(map((name) => `Hello, ${name}!`)) .subscribe(console.log);. // Open the console in the bottom ...
確定! 回上一頁