Skip to content

Instantly share code, notes, and snippets.

@xjamundx
Last active July 21, 2016 20:45
Show Gist options
  • Save xjamundx/23e3139aefb54189507daa7a7f1bba04 to your computer and use it in GitHub Desktop.
Save xjamundx/23e3139aefb54189507daa7a7f1bba04 to your computer and use it in GitHub Desktop.
// here is an async function
async function getNumber() {
return 4 // actually returns a Promise
}
// the same function using promises
function getNumber() {
return Promise.resolve(4)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment