Home / Javascript Tips Generated By ChatGPT / Using async/await for Asynchronous Functions in Javascript async/await makes working with promises more comfortable. Source Code async function fetchData() { let data = await promise; console.log(data); }