Région de recherche :

Date :

https://developer.mozilla.org › ... › docs › Web › JavaScript › Reference › Statements › async_function

async function - JavaScript | MDN - MDN Web Docs

Learn how to use async functions to write asynchronous, promise-based code in a cleaner style with await expressions. See syntax, description, examples, and browser compatibility of async functions.

https://developer.mozilla.org › fr › docs › Web › JavaScript › Reference › Statements › async_function

async function - JavaScript | MDN - MDN Web Docs

Une fonction asynchrone est une fonction précédée par le mot-clé async, et qui peut contenir le mot-clé await. async et await permettent un comportement asynchrone, basé sur une promesse (Promise), écrite de façon simple, et évitant de configurer explicitement les chaînes de promesse.

https://www.w3schools.com › Js › js_async.asp

JavaScript Async - W3Schools

Learn how to use async and await keywords to make promises easier to write and handle in JavaScript. See examples of async functions, await syntax, and browser support.

https://javascript.info › async-await

Async/await - The Modern JavaScript Tutorial

Learn how to use async/await syntax to work with promises in a more comfortable fashion. See examples of async functions, await keyword, error handling, and thenables.

https://www.javascripttutorial.net › javascript-async-await

JavaScript Async / Await: Asynchronous JavaScript - JavaScript Tutorial

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

https://fr.javascript.info › async-await

Async/await - JavaScript

Le mot “async” devant une fonction signifie une chose simple : une fonction renvoie toujours une promesse. Les autres valeurs sont enveloppées dans une promesse résolue automatiquement. Par exemple, cette fonction renvoie une promesse résolue avec le résultat 1 ; testons-la: async function f() { return 1; } f().then(alert); // 1.

https://javascript.info › async

Promises, async/await - The Modern JavaScript Tutorial

Promises, async/await. Introduction: callbacks. Promise. Promises chaining. Error handling with promises. Promise API. Promisification. Microtasks. Async/await.

https://developer.mozilla.org › en-US › docs › Learn › JavaScript › Asynchronous › Introducing

Introducing asynchronous JavaScript - Learn web development | MDN

In this article, we'll explain what asynchronous programming is, why we need it, and briefly discuss some of the ways asynchronous functions have historically been implemented in JavaScript. Prerequisites: A reasonable understanding of JavaScript fundamentals, including functions and event handlers. Objective:

https://devdoc.net › ... › en-US › docs › Web › JavaScript › Reference › Statements › async_function.html

async function - JavaScript | MDN

The purpose of async / await functions is to simplify the behavior of using promises synchronously and to perform some behavior on a group of Promises. Just as Promises are similar to structured callbacks, async / await is similar to combining generators and promises.

https://www.sitepoint.com › javascript-async-await

A Beginner’s Guide to JavaScript async/await, with Examples

The async and await keywords in JavaScript provide a modern syntax to help us handle asynchronous operations. In this tutorial, we’ll take an in-depth look at how to use async/await to...

A Beginner’s Guide to JavaScript async/await, with Examples