Skip to content

Instantly share code, notes, and snippets.

@hachi8833
Created March 12, 2021 08:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hachi8833/48106ac053a78300f27f0baec54a1966 to your computer and use it in GitHub Desktop.
Save hachi8833/48106ac053a78300f27f0baec54a1966 to your computer and use it in GitHub Desktop.
Promise sample code 1
function delay(t){
return new Promise(function(resolve){
return setTimeout(resolve, t)
});
}
function logHi(){
console.log('hi');
}
delay(2000).then(logHi);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment