We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8de47d8 commit 5cc9247Copy full SHA for 5cc9247
docs/2-browser-apps/03-class/_samples/count-down/script.js
@@ -4,4 +4,4 @@ const now = new Date();
4
const remainingHours = 23 - now.getHours();
5
const remainingMinutes = 59 - now.getMinutes();
6
const remainingSeconds = 60 - now.getSeconds();
7
-countdownBox.textContent = `今日は残り${remainingHours}時間 ${remainingMinutes}分 ${remainingSeconds}秒です。`;
+countdownBox.textContent = `今日は残り${remainingHours}時間 ${remainingMinutes}分 ${remainingSeconds}秒です。`;
0 commit comments