Skip to content

Instantly share code, notes, and snippets.

@alexalannunes
Created May 2, 2019 20:00
Show Gist options
  • Save alexalannunes/fe5a499abf77a2a163600f1bde609a64 to your computer and use it in GitHub Desktop.
Save alexalannunes/fe5a499abf77a2a163600f1bde609a64 to your computer and use it in GitHub Desktop.
function async/await using callback
class GitHubUser {
async data(cb) {
let users = await $.get('http://api.github.com/users/alexalannunes');
cb(users);
}
}
var user = new GitHubUser();
user.data(users => {
console.log(users);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment