Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 611 Bytes

how_to_catch_errors_in_async_await.md

File metadata and controls

22 lines (16 loc) · 611 Bytes

How to catch errors in async/await

Wrap your async code in a try/catch block to handle errors gracefully.

async function fetchData() {
  try {
    const response = await fetch('https://api.example.com/data');
    const data = await response.json();
    console.log(data);
  } catch (error) {
    console.error('Error:', error);
  }
}
fetchData();

Tags: intermediate, JavaScript, Async/Await, Error Handling