回答編集履歴
1
chousei
test
CHANGED
@@ -8,4 +8,10 @@
|
|
8
8
|
|
9
9
|
setInterval(()=>this.showClock(), 1000)
|
10
10
|
|
11
|
+
|
12
|
+
|
13
|
+
//もしくは
|
14
|
+
|
15
|
+
setInterval(this.showClock.bind(this), 1000)
|
16
|
+
|
11
17
|
```
|