Skip to content

Instantly share code, notes, and snippets.

View dannyhvc's full-sized avatar
🌐
Reading MOS 6502 instructions

Daniel Herrera-Vasquez dannyhvc

🌐
Reading MOS 6502 instructions
View GitHub Profile
@gvergnaud
gvergnaud / Promises-under-the-hood.md
Last active June 19, 2024 07:26
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.