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

    Jan 21, 2026 · The Promise object represents the eventual completion (or failure) of an asynchronous operation and its resulting value.

  2. PROMISE Definition & Meaning - Merriam-Webster

    4 days ago · The meaning of PROMISE is a declaration that one will do or refrain from doing something specified. How to use promise in a sentence.

  3. JavaScript Promise - GeeksforGeeks

    May 2, 2026 · 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 available in the future.

  4. JavaScript Promises - W3Schools

    JavaScript Promises were created to make asynchronous JavaScript easier to use. A Promise object represents the completion or failure of an asynchronous operation.

  5. How Promises Work in JavaScript – A Comprehensive Beginner's Guide

    Jun 13, 2023 · Conclusion This has been a deep dive into promises and async operations. In this article, you have learned how promises came about in JavaScript, what they are, and how to create them. …

  6. Promise - The Modern JavaScript Tutorial

    Dec 11, 2024 · The function passed to new Promise is called the executor. When new Promise is created, the executor runs automatically. It contains the producing code which should eventually …

  7. PROMISES Definition & Meaning | Dictionary.com

    6 days ago · PROMISES definition: plural of promise. and present tense form of promise (3rd person singular). See examples of promises used in a sentence.

  8. Promises

    Promises help you naturally handle errors, and write cleaner code by not having callback parameters, and without modifying the underlying architecture (i.e. you can implement them in pure JavaScript …

  9. 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.

  10. JavaScript Promises: A Tutorial with Examples | Toptal®

    Aim of this tutorial is to help you understand Promises, and nudge you to get more practice using them, whether you are using back-end JavaScript and NodeJS or front-end like EmberJS.