Région de recherche :

Date :

https://developer.mozilla.org › en-US › docs › Web › JavaScript › Reference › Operators › await

await - JavaScript | MDN - MDN Web Docs

Learn how to use the await operator to pause the execution of an async function until a promise is settled. See examples of awaiting promises, thenable objects, and non-thenable values, and how to handle rejections and top level await.

https://stackoverflow.com › questions › 27759593

javascript - How do I wait for a promise to finish before returning the ...

async function waitForPromise() { // let result = await any Promise, like: let result = await Promise.resolve('this is a sample promise'); } Added due to comment: An async function always returns a Promise, and in TypeScript it would look like:

https://developer.mozilla.org › fr › docs › Web › JavaScript › Reference › Operators › await

await - JavaScript | MDN - MDN Web Docs

L'opérateur await permet d'attendre la résolution d'une promesse (Promise). Il ne peut être utilisé qu'au sein d'une fonction asynchrone (définie avec l'instruction async function).

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

Async/await - JavaScript

Le mot-clé await fait en sorte que JavaScript attende que cette promesse se réalise et renvoie son résultat. Voici un exemple avec une promesse qui se résout en 1 seconde: async function f() { let promise = new Promise((resolve, reject) => { setTimeout(() => resolve("done!"), 1000) }); let result = await promise; alert(result); // "done!"

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://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://developer.mozilla.org › fr › docs › Learn › JavaScript › Asynchronous › Promises

Comment utiliser les promesses - Apprendre le développement web - MDN

Avec une API fonctionnant avec des promesses, la fonction asynchrone démarre l'opération et renvoie un objet Promise. On peut alors attacher des gestionnaires à cette promesse et les gestionnaires seront exécutés lors du succès ou de l'échec de l'opération.

https://www.freecodecamp.org › news › javascript-promises-async-await-and-promise-methods

How to Use JavaScript Promises – Callbacks, Async/Await, and Promise ...

Learn how to use promises and async/await in JavaScript to handle asynchronous operations. See examples of creating, resolving, rejecting and chaining promises, and how to avoid callback hell.

How to Use JavaScript Promises – Callbacks, Async/Await, and Promise ...

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.freecodecamp.org › news › javascript-async-await

How to Use Async/Await in JavaScript – Explained with Code Examples

Learn how to use the async/await syntax to handle JavaScript promises without chaining methods or callbacks. See code examples, error handling, and comparison with standard promises.

How to Use Async/Await in JavaScript – Explained with Code Examples