About 425,000 results
Open links in new tab
  1. async function - JavaScript | MDN

    Jul 8, 2025 · The async function declaration creates a binding of a new async function to a given name. The await keyword is permitted within the function body, enabling asynchronous, …

  2. Sync vs. Async: What’s the Difference and When to Use Each?

    Feb 12, 2025 · That’s where synchronous and asynchronous execution come in. Synchronous execution follows a step-by-step order, while asynchronous execution lets tasks run …

  3. Async/await - Wikipedia

    In computer programming, the async/await pattern is a syntactic feature of many programming languages that allows an asynchronous, non-blocking function to be structured in a way similar …

  4. JavaScript Async - W3Schools

    The await keyword can only be used inside an async function. The await keyword makes the function pause the execution and wait for a resolved promise before it continues:

  5. Async/await - The Modern JavaScript Tutorial

    Mar 24, 2025 · The word “async” before a function means one simple thing: a function always returns a promise. Other values are wrapped in a resolved promise automatically.

  6. Async and Await in JavaScript - GeeksforGeeks

    Jul 31, 2025 · The async keyword transforms a regular JavaScript function into an asynchronous function, causing it to return a Promise. The await keyword is used inside an async function to …

  7. async function expression - JavaScript - MDN

    Jul 8, 2025 · The async function keywords can be used to define an async function inside an expression. You can also define async functions using the async function declaration or the …

  8. Async/Await is finally back in Zig

    Nov 1, 2025 · Zig removed async/await support from earlier versions while the team completely redesigned the API from the ground up. The goal is to create something entirely new that …

  9. Async functions: making promises friendly | Articles | web.dev

    Oct 20, 2016 · Async functions are enabled by default in Chrome, Edge, Firefox, and Safari, and they're quite frankly marvelous. They allow you to write promise-based code as if it were …

  10. JavaScript Async / Await: Asynchronous JavaScript

    In this tutorial, you will learn a new syntax to write asynchronous code by using JavaScript async/ await keywords.