Created
August 2, 2016 23:36
-
-
Save anonymous/fcb5a021cb9f698d94122d3f59cc7f3e to your computer and use it in GitHub Desktop.
Set time out ex // source http://jsbin.com/widake
This file contains hidden or 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
<!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> |
This file contains hidden or 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
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