-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
39 lines (32 loc) · 827 Bytes
/
test.html
File metadata and controls
39 lines (32 loc) · 827 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<script>
function Timer() {
this.s1 = 0;
this.s2 = 0;
// arrow function
setInterval(() => {
this.s1++;
}, 1000)
// normal function
setInterval(function () {
this.s2++;
}, 1000)
}
var timer = new Timer();
setTimeout(() => {
console.log("s1:",timer.s1);
}, 3100);
setTimeout(() => {
console.log("s2:",timer.s2);
}, 3100);
</script>
</body>
</html>