from Hacker News

A Model for Reasoning About JavaScript Promises [pdf]

by tegeek on 11/10/17, 11:02 AM with 4 comments

  • by treyhuffine on 11/10/17, 11:04 PM

    Very thorough article, great to read through. I wrote simple promise implementation and explanation if anyone just starting out could use an introduction https://medium.com/gitconnected/understand-javascript-promis...
  • by k__ on 11/10/17, 6:54 PM

    I'm seriously considering observables instead of promises in my next projects, because I have to mix promises with callbacks rather often and need to cancel actions.