Skip to content

Commit 5cc9247

Browse files
committed
format
1 parent 8de47d8 commit 5cc9247

File tree

1 file changed

+1
-1
lines changed
  • docs/2-browser-apps/03-class/_samples/count-down

1 file changed

+1
-1
lines changed

docs/2-browser-apps/03-class/_samples/count-down/script.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ const now = new Date();
44
const remainingHours = 23 - now.getHours();
55
const remainingMinutes = 59 - now.getMinutes();
66
const remainingSeconds = 60 - now.getSeconds();
7-
countdownBox.textContent = `今日は残り${remainingHours}時間 ${remainingMinutes}${remainingSeconds}秒です。`;
7+
countdownBox.textContent = `今日は残り${remainingHours}時間 ${remainingMinutes}${remainingSeconds}秒です。`;

0 commit comments

Comments
 (0)