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 e4e3d07 commit 6b83e27Copy full SHA for 6b83e27
Sprint-1/2-mandatory-errors/4.js
@@ -1,2 +1,12 @@
1
-const 12HourClockTime = "20:53";
2
-const 24hourClockTime = "08:53";
+//const 12HourClockTime = "20:53";
+//const 24hourClockTime = "08:53";
3
+// JavaScript variable names (identifiers) must not start with a digit.
4
+// They may only start with:a letter
5
+// (A–Z or a–z)
6
+
7
+const T12HourClockTime = "20:53";
8
+const T24hourClockTime = "08:53";
9
+console.log (T12HourClockTime);
10
+console.log (T24hourClockTime);
11
12
0 commit comments