const data = async () => { const got = await fetch('https://jsonplaceholder.typicode.com/todos/1'); console.log(await got.json()) } data();