<script>
async function getUsers() {
const res = await fetch(`http://jsonplaceholder.typicode.com/users`);
const data = await res.json();
return data;
}
getUsers().then(users => {
console.log(users);
})
</script>