JSONPlaceholder GET All Users

by Jacob King

JavaScript

fetch('https://jsonplaceholder.typicode.com/users')
  .then(res => res.json())
  .then(users => console.log(users));