whch method do you append to a fetch() method sattement to handle successful response code example
Example: javascript fetch api
fetch('http://example.com/movies.json')
.then((response) => {
return response.json();
})
.then((data) => {
console.log(data);
});