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 049285a commit b401696Copy full SHA for b401696
Sprint-1/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
+
4
+// this is given an error because we can no start an variable with number So we can fix moving the number
5
+// in the middle or we can write the number instead declare the integer number
6
7
+const hour12ClockTime = "20:53";
8
+console.log(hour12ClockTime);
9
10
11
+const hour24ClockTime = "08:53";
12
+console.log(hour24ClockTime);
0 commit comments