-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtut58.html
36 lines (34 loc) · 1.07 KB
/
tut58.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SetTimeout</title>
</head>
<body>
<div class="container">
This is container
</div>
<script>
// console.log("This is tutorial 58");
// settimeout allows the funtion work at once after interval of time
// cleartimeout allows function repeatedly in a given interval
// function greet(){
// console.log("Hello world Good morning");
// }
// setTimeout(greet, 9000);
// timeout=setTimeout(greet, 3000);
// console.log(timeout);
// setInterval(greet, 1000);
// intervalId=setInterval(greet, 1000);
// clearInterval(intervalId);
function displayTime(){
time=new Date();
console.log(time);
document.getElementById('time').innerHTML=time;
}
setInterval(displayTime, 1000);
</script>
</body>
</html>