Skip to content

Instantly share code, notes, and snippets.

@spences10
Last active February 1, 2017 09:39
Show Gist options
  • Save spences10/71bf1767a50d8301b9a225cdcff53a23 to your computer and use it in GitHub Desktop.
Save spences10/71bf1767a50d8301b9a225cdcff53a23 to your computer and use it in GitHub Desktop.
// Creating promises
var promise = new Promise(function (resolve, reject) {
resolve('all good')
})
promise.then(function (result) {
console.log('was it good?', result)
}).catch(function (err) {
console.error('ERR', err)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment