JSONPlaceholder GET 1 User
by Jacob King
JavaScript
fetch('https://jsonplaceholder.typicode.com/users/1')
.then(res => res.json())
.then(user => console.log(user));
by Jacob King
fetch('https://jsonplaceholder.typicode.com/users/1')
.then(res => res.json())
.then(user => console.log(user));