Skip to content

Instantly share code, notes, and snippets.

View lyaunzbe's full-sized avatar
🎯
Focusing

Ben L. lyaunzbe

🎯
Focusing
  • art blocks
  • :)
  • 13:52 (UTC -12:00)
View GitHub Profile
@lyaunzbe
lyaunzbe / promises.md
Created October 20, 2012 16:59 — forked from domenic/promises.md
You're Missing the Point of Promises

You're Missing the Point of Promises

Promises are a software abstraction that makes working with asynchronous operations much more pleasant. In the most basic definition, your code will move from continuation-passing style:

getTweetsFor("domenic", function (err, results) {
    // the rest of your code goes here.
});