Answers for "create: async () => { try {"

1

try catch async await

async function getData() {
    try {
        const response = await fetch('https://jsonplaceholder.typicode.com/todos/1')
        const data = await response.json();
      	const { userId, id, title, completed } = data;
      	console.log(userId, id, title, completed);
    } catch(err) {
      alert(err)
    }
}
getData();
Posted by: Guest on January-04-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language