File tree 5 files changed +31
-98
lines changed
Custom Utility Kit/ContactPage
JavaScript Module/New Path Javascript/setInterval & setTimeOut
5 files changed +31
-98
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html lang ="en ">
3
+ < head >
4
+ < meta charset ="UTF-8 ">
5
+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
6
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
7
+ < title > setInterval & setTimeOut</ title >
8
+ </ head >
9
+ < body >
10
+ < div >
11
+ Time now is < span id ="time "> </ span >
12
+ </ div >
13
+ < script src ="script.js "> </ script >
14
+ </ body >
15
+ </ html >
Original file line number Diff line number Diff line change
1
+ // function greet(){
2
+ // console.log('Hello World');
3
+ // }
4
+
5
+ // timeoutID= setTimeout(greet, 5000);
6
+ // clearTimeout(timeoutID);
7
+
8
+ // intervalID=setInterval(greet, 2000);
9
+ // clearInterval(intervalID);
10
+
11
+ function displayTime ( ) {
12
+ time = new Date ( ) ;
13
+ console . log ( time ) ;
14
+ document . getElementById ( 'time' ) . innerHTML = time ;
15
+ }
16
+ setInterval ( displayTime , 1000 ) ;
You can’t perform that action at this time.
0 commit comments