Posted 13 March 2014 and still refusing to do promise-based puns When I first started working with promises I had the overly simplistic view that passing a value into reject would mark the promise as "failed", and passing a value into resolve would mark it as "successful". However, the latter isn't always true. new Promise((resolve, reject) => { resolve(something); }).then( () => console.log('Yey'

