http vs fetcg code example
Example 1: fetch api
// Making post request
const url = 'http://dummy.restapiexample.com/api/v1/create'
const user = {
name: 'Rahul'
age: '16'
salary: '000'
};
const options = {
method: 'POST'
body: JSON.stringify(user),
}
fetch(url, options)
.then( res => res.json())
.then( res=> console.log(res));
Example 2: xml http request fetch
fetch('my/url/').then(respone()=>{
console.log(response);
}