Skip to content

Instantly share code, notes, and snippets.

@midnightcodr
Created May 18, 2019 02:06
Show Gist options
  • Save midnightcodr/29b26580bc9cabc08ad0c7f5cf794216 to your computer and use it in GitHub Desktop.
Save midnightcodr/29b26580bc9cabc08ad0c7f5cf794216 to your computer and use it in GitHub Desktop.
Showing a simple example of abusing async/await in javascript
const asyncJob = () => {
console.time('asyncJob')
return new Promise(resolve => {
return setTimeout(() => {
console.timeEnd('asyncJob')
return resolve('result from asycJob')
}, 1000)
})
}
// async/await below are completely unnecessary
// as `result` does not need to be transformed before
// being returned by doThingA
const doThingA = async () => {
const result = await asyncJob()
return result
}
// it achieves the same result as the following
// simpler code
// const doThingA = () => {
// const result = asyncJob()
// return result
// }
const main = async () => {
console.time('main')
const result = await doThingA()
console.timeEnd('main')
console.log(`result=${result}`)
}
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment