Skip to content

Instantly share code, notes, and snippets.

Created August 2, 2016 23:36
Show Gist options
  • Save anonymous/fcb5a021cb9f698d94122d3f59cc7f3e to your computer and use it in GitHub Desktop.
Save anonymous/fcb5a021cb9f698d94122d3f59cc7f3e to your computer and use it in GitHub Desktop.
Set time out ex // source http://jsbin.com/widake
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Set time out ex</title>
</head>
<body>
<script id="jsbin-javascript">
setTimeout(function () {
console.log("Hello, World!");
}, 1000);
</script>
<script id="jsbin-source-javascript" type="text/javascript"> setTimeout(function () {
console.log("Hello, World!");
}, 1000);</script></body>
</html>
setTimeout(function () {
console.log("Hello, World!");
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment