Created
May 18, 2019 02:06
-
-
Save midnightcodr/29b26580bc9cabc08ad0c7f5cf794216 to your computer and use it in GitHub Desktop.
Showing a simple example of abusing async/await in javascript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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