Skip to content

Instantly share code, notes, and snippets.

@mishelashala
Last active July 24, 2020 13:42
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/006ded4c23c5ee398a96145e24964ee5 to your computer and use it in GitHub Desktop.
Save mishelashala/006ded4c23c5ee398a96145e24964ee5 to your computer and use it in GitHub Desktop.
// Promise<number>
var promisedNumber = new Promise(function (fulfill, reject) {
setTimeout(() => { fulfill(10) }, 500)
})
// Promise<string>
var promisedString = new Promise(function (fulfill, reject) {
setTimeout(() => { fulfill(10) }, 1000)
})
console.log('start')
const AsyncPipeline = () => {
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