-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtute46.html
34 lines (32 loc) · 1.1 KB
/
tute46.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
<!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>set time out| clear time out</title>
</head>
<body>
<div class="container">
Time now is <span id="time"></span>
</div>
<script>
console.log("this is stressfull");
// setTimeout ----> allows us to to rum function once after one intervel of clearTimeout---> allows us to run a fumction repeatedly after the intervel of time
function greet(name, byeText){
console.log("hello good morning"+ name+ byeText);
}
// timeOut=setTimeout(greet,5000," harry","take care");
// console.log(timeOut)
// clearTimeout(timeOut);
// intervelid=setInterval(greet , 1000, "harry","good morniong");
// clearInterval(intervelid);
function displayTime(){
time = new Date();
console.log(time);
document.getElementById("time").innerHTML=time;
}
setInterval(displayTime,1000);
</script>
</body>
</html>