Skip to content

Instantly share code, notes, and snippets.

@abegehr
Last active May 13, 2020 10:29
Show Gist options
  • Save abegehr/09d6cd123a880bd54d981fa04e395b5d to your computer and use it in GitHub Desktop.
Save abegehr/09d6cd123a880bd54d981fa04e395b5d to your computer and use it in GitHub Desktop.
setTimeout Function
// https://www.w3schools.com/jsref/met_win_settimeout.asp
function myFunction() {
setTimeout(function() {
alert("Hello");
}, 3000);
}
myFunction();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment