Async / Await
Handle asynchronous operations with Promises and async functions.
async function load() {
const res = await fetch("/api/courses");
return res.json();
}JavaScript Tutorial
Handle asynchronous operations with Promises and async functions.
async function load() {
const res = await fetch("/api/courses");
return res.json();
}