Skip to content

Instantly share code, notes, and snippets.

@gvergnaud
gvergnaud / Promises-under-the-hood.md
Last active December 24, 2023 18:35
Promises, under the hood.

Promises, under the hood

You all know that to create a new Promise you need to define it this way:

  new Promise((resolve, reject) => {
    ...
    resolve(someValue)
  })

You are passing a callback that defines the specific behavior of your promise.