Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mishelashala
Last active July 24, 2020 13:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mishelashala/a2bf10bde80f93ed8043eb52561ac642 to your computer and use it in GitHub Desktop.
Save mishelashala/a2bf10bde80f93ed8043eb52561ac642 to your computer and use it in GitHub Desktop.
// Promise<number>
var promisedNumber = new Promise(function asyncUnitOfWork(fulfill, reject) {
throw new Error('Could not produce number (throw)')
});
console.log('start')
promisedNumber.then(
function onFulfilled(value) {
console.log('value: ', value)
},
function onRejected(err) {
console.log('error: ', err.message)
}
)
console.log('finish')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment