Yahoo Italia Ricerca nel Web

Risultati di ricerca

  1. 25 mar 2021 · Promises (Les promesses) - Un film di Amanda Sthers. Una storia di amore a tempi sfasati poco coinvolgente nonostante il talento di Pierfrancesco Favino. Con Pierfrancesco Favino, Kelly Reilly, Jean Reno, Kris Marshall, Cara Theobold. Drammatico, Italia, 2021. Durata 113 min. Consigli per la visione +13.

    • (16)
    • Kelly Reilly
    • Amanda Sthers
  2. Promises; Lingua originale: inglese: Paese di produzione: Italia, Francia: Anno: 2021: Durata: 113 min Genere: drammatico: Regia: Amanda Sthers: Sceneggiatura: Amanda Sthers: Produttore: Marco Cohen, Benedetto Habib, Fabrizio Donvito, Fabio Conversi, Amanda Sthers, Daniel Campos Pavoncelli, Riccardo Marchegiani: Produttore esecutivo ...

    • 113 min
    • inglese
  3. W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.

  4. 29 nov 2023 · To learn about the way promises work and how you can use them, we advise you to read Using promises first. Description A Promise is a proxy for a value not necessarily known when the promise is created.

  5. 13 giu 2023 · JavaScript introduced Promises as part of ES6 (ES2015) to solve this problem. It simplified working with callbacks and made for better syntax as you'll see shortly. Promises are now the foundation for most modern asynchronous operations developers use in JavaScript today.

    • Promises1
    • Promises2
    • Promises3
    • Promises4
    • Promises5
  6. 16 dic 2013 · Promises arrive in JavaScript! Promises have been around for a while in the form of libraries, such as: Q; when; WinJS; RSVP.js; The above and JavaScript promises share a common, standardized behaviour called Promises/A+. If you're a jQuery user, they have something similar called Deferreds.

  7. let promise = new Promise((resolve, reject) => { setTimeout(() => reject(new Error("Whoops!")), 1000); }); // .catch(f) is the same as promise.then(null, f) promise.catch(alert); // shows "Error: Whoops!" after 1 second. The call .catch(f) is a complete analog of .then(null, f), it’s just a shorthand.