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 6011f82 commit dd6fc22Copy full SHA for dd6fc22
Sprint-1/2-mandatory-errors/4.js
@@ -1,2 +1,9 @@
1
-const 12HourClockTime = "20:53";
2
-const 24hourClockTime = "08:53";
+// const 12HourClockTime = "20:53";
+// const 24hourClockTime = "08:53";
3
+
4
+// SyntaxError: Invalid or unexpected token - variable names cannot start with a digit
5
+// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Grammar_and_types#variables
6
7
+// Solution:
8
+const twelveHourClockTime = "20:53";
9
+const twentyFourHourClockTime = "08:53";
0 commit comments