About 376,000 results
Open links in new tab
  1. Promise - JavaScript | MDN - MDN Web Docs

    Jun 2, 2025 · The Promise object represents the eventual completion (or failure) of an asynchronous operation and its resulting value. To learn about the way promises work and …

  2. JavaScript Promises - W3Schools

    Here is how to use a Promise: 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. To …

  3. How Promises Work in JavaScript – A Comprehensive Beginner's …

    Jun 13, 2023 · To work with promises, you must adopt a special syntax that makes writing async instructions a lot more organized. Working with promises is a very useful skill every JavaScript …

  4. PROMISE Definition & Meaning | Dictionary.com

    Promise definition: a declaration that something will or will not be done, given, etc., by one.. See examples of PROMISE used in a sentence.

  5. JavaScript Promise - GeeksforGeeks

    Jan 18, 2025 · JavaScript Promises make handling asynchronous operations like API calls, file loading, or time delays easier. Think of a Promise as a placeholder for a value that will be …

  6. Promise - The Modern JavaScript Tutorial

    Dec 11, 2024 · A promise is a special JavaScript object that links the “producing code” and the “consuming code” together. In terms of our analogy: this is the “subscription list”. The …

  7. JavaScript Promises: an introduction | Articles | web.dev

    Dec 16, 2013 · Promises simplify deferred and asynchronous computations. A promise represents an operation that hasn't completed yet.

  8. JavaScript Promise and Promise Chaining - Programiz

    Promises are useful when you have to handle more than one asynchronous task, one after another. For that, we use promise chaining. You can perform an operation after a promise is …

  9. Promises - definition of promises by The Free Dictionary

    1. a declaration that something will or will not be done, given, etc: He kept his promise to write regularly. 2. indication of future excellence or achievement: a writer who shows promise. 3. …

  10. Promises - Learn JavaScript - Free Interactive JavaScript Tutorial

    Promises. Promises are the basics of asynchronous programming in JavaScript, and are very important to master. What is Asynchronous Programming? Asynchronous programming, or in …

  11. Some results have been removed