(async function() { const response = await fetch("https://jsonplaceholder.typicode.com/users") const resArr = await response.json(); console.log(resArr); })();