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 51950ad commit 3a1abf9Copy full SHA for 3a1abf9
Sprint-1/2-mandatory-errors/4.js
@@ -1,5 +1,7 @@
1
-const 12HourClockTime = "20:53";
2
-const 24hourClockTime = "08:53";
3
-// the 12 and 24 are changing position
4
-const 24HourClockTime = "20:53";
5
-const 12hourClockTime = "08:53";
+//const 12HourClockTime = "20:53";
+//const 24hourClockTime = "08:53";
+// in Javascript variable name can't start with a number.
+const hourClockTime12 = "20:53";
+const hourClockTime24 = "08:53";
6
+console.log(hourClockTime12)
7
+console.log(hourClockTime24)
0 commit comments