To make HTTP Requests in Angular we use the methods of HttpClient class which is defined in the @angular/common/http package. HttpClient uses XMLHttpRequest browser API behind the scenes. HttpClient class provides the following methods each corresponding to the different HTTP verbs: get post put delete patch head jsonp HttpClient provides several methods for making HTTP requests […]