Skip to content

Instantly share code, notes, and snippets.

@Shadid12
Created March 27, 2018 16:21
Show Gist options
  • Save Shadid12/80408f1ad1bdcbbf47cd44b740c4345d to your computer and use it in GitHub Desktop.
Save Shadid12/80408f1ad1bdcbbf47cd44b740c4345d to your computer and use it in GitHub Desktop.
const getApple = (b) => {
setTimeout(() => {
b({name: 'Macintosh'});
}, 2000);
};
getApple((apple) => {
console.log(apple.name);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment