Skip to content

Instantly share code, notes, and snippets.

@jorgeguberte
Created September 22, 2015 23:54
Show Gist options
  • Save jorgeguberte/7075d7e8e32158415c65 to your computer and use it in GitHub Desktop.
Save jorgeguberte/7075d7e8e32158415c65 to your computer and use it in GitHub Desktop.
//Essa é a função de callback
mostraPosts(posts){
//mostra os posts
}
pegaPosts(callback){
//Pega os posts, sei lá como.
posts = []
callback(posts);
}
pegaPosts(mostraPosts);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment