-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasic_6.html
More file actions
40 lines (35 loc) · 997 Bytes
/
Copy pathBasic_6.html
File metadata and controls
40 lines (35 loc) · 997 Bytes
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
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!-- Type-1: -->
<button id="stop">Stop</button>
<script>
const sayHitesh = function(){
console.log("Hitesh");
}
const changeText = function(){
document.querySelector('h1').innerHTML = "best JS series"
}
const changeMe = setTimeout(changeText, 2000)
document.querySelector('#stop').addEventListener('click', function(){
clearTimeout(changeMe)
console.log("STOPPED")
})
</script>
<!-- Type-2: -->
<button id="start">Start</button>
<button id="stop">Stop</button>
<script>
const sayDate = function(str){
console.log(str, Date.now());
}
const intervalId = setInterval(sayDate, 1000, "hi")
clearInterval(intervalId)
</script>
</body>
</html>