Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MikeDigitize/c60c4e2e3a490ae76e7f to your computer and use it in GitHub Desktop.
Save MikeDigitize/c60c4e2e3a490ae76e7f to your computer and use it in GitHub Desktop.
Some coding challenges for the AO front end team who are learning JavaScript
var Timer = wait => new Promise(resolve => setTimeout(resolve, wait));
Timer(2000).then(() => console.log('done'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment