-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevent02.html
More file actions
38 lines (32 loc) · 1.07 KB
/
event02.html
File metadata and controls
38 lines (32 loc) · 1.07 KB
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
<!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>
<h1>Javascript 02</h1>
<button id = "stop">Stop</button>
</body>
<script>
// setTimeout()-------------->not a part of the core javascript
//setInterval---------------->also not a part of core js
//clearInterval
//clearTimeout----------------------->these two are part of the above fxn
// setTimeout(function(){
// console.log("Aamin");
// },2000 )
const sayAamin = function(){
console.log("Aamin");
}
const changeText = function(){
document.querySelector('h1').innerHTML = "Best JS series"}
const changeMe = setTimeout(changeText,2000)
setTimeout(sayAamin,4000)
document.querySelector('#stop').addEventListener('click',function(){
clearTimeout(changeMe)
console.log("STOPPED")
})
</script>
</html>