Skip to content

Instantly share code, notes, and snippets.

@mishelashala
Created July 24, 2020 13:31
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/701acb0c35637da49ce25f66324cdec9 to your computer and use it in GitHub Desktop.
Save mishelashala/701acb0c35637da49ce25f66324cdec9 to your computer and use it in GitHub Desktop.
// Promise<number>
var promisedNumber = new Promise(function (fulfill, reject) {
setTimeout(() => { fulfill(10) }, 1000)
});
// Promise<string>
var promisedString = new Promise(function (fulfill, reject) {
setTimeout(() => { fulfill('hello') }, 500)
})
console.log('start')
promisedNumber.then(
// using arrow functions to "save" some visual space
(value) => {
console.log('number: ', value)
promisedString.then(
(value) => { console.log('string:', value) },
(err) => { console.log('error:', err.message) }
)
},
(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