Skip to content

Commit 30e6b09

Browse files
authored
Add tick loop (#55)
<!-- LIST CHANGES HERE -->
2 parents 825080c + cd9ea93 commit 30e6b09

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

testing.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,15 @@
55
ThisTimeStamp - Testing
66
</title>
77
<script type="text/javascript">
8+
function tick() {
9+
console.log(new Date());
10+
setTimeout(tick);
11+
}
12+
813
console.log("Hello World!");
914
</script>
1015
</head>
1116
<body>
17+
<p id="#clockFace"></p>
1218
</body>
1319
</html>

0 commit comments

Comments
 (0)