fetch json() promise code example
Example 1: .fetch method
fetch('http://example.com/movies.json')
.then(response => response.json())
.then(data => console.log(data));
Example 2: xml http request fetch
fetch('my/url/').then(respone()=>{
console.log(response);
}