Région de recherche :

Date :

https://stackoverflow.com › questions › 55601062

Using an async function in Array.find () - Stack Overflow

async function findAsync (arr, asyncCallback) { const promises = arr.map (asyncCallback); const results = await Promise.all (promises); const index = results.findIndex (result => result); return arr [index]; } //... to be used like: findAsync (arr, async (thing) => { const ret = await findThing (); return false; })

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. Ce web page explique la syntaxe, la valeur de retour et les exemples d'utilisation des fonctions asynchrones en JavaScript.

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 and the await keyword to write asynchronous, promise-based code in a cleaner style. See syntax, examples, and differences with regular functions and promise chains.

https://developer.mozilla.org › fr › docs › Web › JavaScript › Reference › Global_Objects › Array › find

Array.prototype.find() - JavaScript | MDN - MDN Web Docs

La méthode find() permet de trouver la première valeur d'un tableau qui correspond à une fonction de test. Découvrez sa syntaxe, ses paramètres, ses exemples et sa compatibilité avec les navigateurs.

https://stackoverflow.com › questions › 38508420

javascript - How to know if a function is async? - Stack Overflow

Check if function is an async/await function. Check if a regular function returns a Promise. Check both. Handle Async Functions. This function can determine if a function was defined using the async keyword. Example functions to validate async function a() {} const b = async => {} Validation function

https://javascript.info › async-await

Async/await - The Modern JavaScript Tutorial

Learn how to use async/await syntax to work with promises in JavaScript. See examples of async functions, await keyword, error handling, and top-level await in modules.

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://devdoc.net › ... › en-US › docs › Web › JavaScript › Reference › Statements › async_function.html

async function - JavaScript | MDN

Learn how to use the async function declaration to define an asynchronous function that returns a Promise. See examples of async functions with and without await expressions, and how to rewrite promise chains with async functions.

https://www.pierre-giraud.com › javascript-apprendre-coder-cours › async-await

Utiliser async et await pour créer des promesses plus lisibles en ...

Apprenez à utiliser les mots clefs async et await pour écrire du code asynchrone plus lisible et intuitif avec des promesses. Découvrez comment gérer les erreurs, utiliser la méthode all () et la différence avec then () et catch ().

Utiliser async et await pour créer des promesses plus lisibles en ...

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 for async/await.