fetch('https://jsonplaceholder.typicode.com/users/9')
.then(function(response) {
console.log(response.json());
})
.then(function(data) {
console.log(data);
})
.catch(function(error) {
console.log('error');
})