Région de recherche :

Date :

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

Promise - JavaScript | MDN - MDN Web Docs

Cette méthode crée une promesse qui sera tenue grâce à la fonction setTimeout(), et avec la valeur comptePromesse (nombre commençant à 1) après 1s à 3s (aléatoire). Le constructeur Promise () est utilisé pour créer la promesse. Le fait que la promesse soit tenue est simplement enregistré via un callback sur p1.then().

https://developer.mozilla.org › en-US › docs › Web › JavaScript › Reference › Global_Objects › Promise

Promise - JavaScript | MDN - MDN Web Docs

A Promise is a proxy for a value not necessarily known when the promise is created. It allows you to associate handlers with an asynchronous action's eventual success value or failure reason.

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

JavaScript Promises - W3Schools

Here is how to use a Promise: myPromise.then ( function (value) { /* code if successful */ }, function (error) { /* code if some error */ } ); Promise.then () takes two arguments, a callback for success and another for failure. Both are optional, so you can add a callback for success or failure only.

https://developer.mozilla.org › fr › docs › Web › JavaScript › Guide › Using_promises

Utiliser les promesses - JavaScript | MDN - MDN Web Docs

Promise.resolve() et Promise.reject() sont des méthodes qui permettent de créer des promesses déjà tenues ou rompues. Promise.all() et Promise.race() sont deux outils de composition qui permettent de mener des opérations asynchrones en parallèle.

https://stackoverflow.com › questions › 31069453

javascript - Creating a (ES6) promise without starting to resolve it ...

Using ES6 promises, how do I create a promise without defining the logic for resolving it? Here's a basic example (some TypeScript): var promises = {}; function waitFor(key: string): Promise<an...

https://javascript.info › promise-basics

Promise - The Modern JavaScript Tutorial

A Promise object serves as a link between the executor (the “producing code” or “singer”) and the consuming functions (the “fans”), which will receive the result or error. Consuming functions can be registered (subscribed) using the methods .then and .catch.

https://masteringjs.io › tutorials › fundamentals › promise-create

JavaScript Create Promise - Mastering JS

Learn four ways to create a new promise in JavaScript using the Promise constructor, static helpers, then() and catch() functions, or async functions. See examples, explanations, and tips for using promises effectively.

https://www.geeksforgeeks.org › javascript-promise

JavaScript Promise - GeeksforGeeks

In JavaScript, there are two ways to create a promise: using the Promise.resolve method or using the new Promise constructor. While both ways achieve the same result, they handle errors differently. Promise.resolve: The Promise.resolve method takes in a value and returns a promise that is resolved with that value. If the value is a ...

https://www.freecodecamp.org › news › how-to-write-a-javascript-promise-4ed8d44292b8

How to Write a JavaScript Promise - freeCodeCamp.org

A promise is simply an object that we create like the later example. We instantiate it with the new keyword. Instead of the three parameters we passed in to make our car (color, type, and doors), we pass in a function that takes two arguments: resolve and reject.

How to Write a JavaScript Promise - freeCodeCamp.org

https://www.freecodecamp.org › news › javascript-promise-tutorial-how-to-resolve-or-reject...

JavaScript Promise Tutorial – How to Resolve or Reject Promises in JS

You can create a promise using the promise constructor like this: let promise = new Promise ( function ( resolve, reject ) { // Make an asynchronous call and either resolve or reject }); In most cases, a promise may be used for an asynchronous operation.

JavaScript Promise Tutorial – How to Resolve or Reject Promises in JS