Created
April 23, 2023 20:52
-
-
Save LennonSantos/f43dba2cac8b81d7ca32f703ab74702c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// function delay example | |
function delay(time = 2500) { | |
return new Promise((resolve) => { | |
setTimeout(resolve, time) | |
}) | |
} | |
// await delay() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment