logo
Angular - Quiz(MCQ)
How would you write code to modify the response from an http.get ?
A)
Using the modify operator chained to the http.get
B)
Using the map function inside of the pipe operator chained to the http.get
C)
Using the transform operator chained to the http.get
D)
Subscribing to the http.get and setting the response to a local variable

Correct Answer :   Using the map function inside of the pipe operator chained to the http.get