Skip to content

Instantly share code, notes, and snippets.

@faustoct1
Created July 13, 2022 23:15
Show Gist options
  • Save faustoct1/e32a538ba5d0aa948df48a9e1513fdda to your computer and use it in GitHub Desktop.
Save faustoct1/e32a538ba5d0aa948df48a9e1513fdda to your computer and use it in GitHub Desktop.
Exemplo de execução função callback
const callback = () => {
console.log('executou callback')
}
const exec = async (cb) => {
console.log('exec começo')
cb()
console.log('exec fim')
}
(async () => {
exec(callback)
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment