I am trying to print the result of http call in Angular using rxjs
http
Angular
rxjs
Consider the following code
import { Compon
this.myService.getConfig().subscribe( (res) => console.log(res), (err) => console.log(err), () => console.log('done!') );