async function fun() {
return fetch('https://jsonplaceholder.typicode.com/todos/1').then(res => res.json());
}
const data = await fun();
async function fun() {
return fetch('https://jsonplaceholder.typicode.com/todos/1').then(res => res.json());
}
const data = await fun();