Région de recherche :

Date :

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://developer.mozilla.org › en-US › docs › Web › JavaScript › Reference › Statements › async...

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 › Learn › JavaScript › Asynchronous

JavaScript asynchrone - Apprendre le développement web | MDN

Dans ce module, nous examinons le JavaScript asynchrone, pourquoi il est important et comment il peut être utilisé afin de gérer efficacement les opérations potentiellement bloquantes telles que la récupération de ressources sur un serveur.

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://fr.javascript.info › async-await

Async/await - JavaScript

Il existe une syntaxe spéciale pour travailler avec les promesses d’une manière plus confortable, appelée “async/await”. Elle est étonnamment facile à comprendre et à utiliser. Fonctions asynchrones. Commençons par le mot-clé async. Il peut être placé avant une fonction, comme ceci:

https://javascript.info › async

Promises, async/await - The Modern JavaScript Tutorial

We want to make this open-source project available for people all around the world. Help to translate the content of this tutorial to your language!

https://fr.javascript.info › async

Promesses, async/await - JavaScript

Introduction: callbacks. Promesse (promise) Chaînage des promesses. Gestion des erreurs avec des promesses. Promesse API. Promisification. Les micro-tâches. Async/await. Ctrl + ← Ctrl + →.

https://www.pierre-giraud.com › javascript-apprendre-coder-cours › introduction-asynchrone

Introduction à l'asynchrone en JavaScript - Pierre Giraud

En JavaScript, les opérations asynchrones sont placées dans des files d’attentes qui vont s’exécuter après que le fil d’exécution principal ou la tâche principale (le « main thread » en anglais) ait terminé ses opérations. Elles ne bloquent donc pas l’exécution du reste du code JavaScript.

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

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

Learn how to use the async and await keywords in JavaScript to handle asynchronous operations with a modern syntax. This guide covers the basics of async functions, error handling, parallel execution, and more.

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