(async function fetchData () {
const response = await fetch('https://jsonplaceholder.typicode.com/users/1')
const json = await response.json()
document.write(JSON.stringify(json))
})()
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.