-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlecture28.html
20 lines (20 loc) · 950 Bytes
/
lecture28.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!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>Lecture: 28 | JavaScript Timers complete explanation | setTimeout() | setInterval()</title>
</head>
<body>
*****************************Tutorial Start 🔥 *******************************
<h1>JavaScript Timers complete explanation | setTimeout() | setInterval()</h1>
<!--setTimeout() function example-->
<button onclick="setTimeOutFun()">Set Timeout() function Example</button>
<button onclick="setIntervalFun()">SetInterval() function Example</button>
<button onclick="setStopFun()">clearInterval() function to stop the setIntervalObj Interval</button>
<script src="lecture28.js"></script>
<br>
***************************** Tutorial End 🚀 ********************************
</body>
</html>