Skip to content

Instantly share code, notes, and snippets.

@Shadid12
Last active March 27, 2018 16:12
Show Gist options
  • Save Shadid12/4366ce84e82bb3f1866b097e3d756724 to your computer and use it in GitHub Desktop.
Save Shadid12/4366ce84e82bb3f1866b097e3d756724 to your computer and use it in GitHub Desktop.
const getApple = () => {
setTimeout(() => {
return { "name": "Macintosh" }
}, 2000);
};
const myApple = getApple();
console.log(myApple.name);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment