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