There was an error while loading. Please reload this page.
1 parent 80bc588 commit f34c0daCopy full SHA for f34c0da
1 file changed
Sprint-2/2-mandatory-errors/4.js
@@ -1,2 +1,5 @@
1
-const 12HourClockTime = "8:53pm";
2
-const 24hourClockTime = "20:53";
+// Variable names cannot begin with a number, so use descriptive names instead.
+const twelveHourClockTime = "8:53pm";
3
+const twentyFourHourClockTime = "20:53";
4
+console.log(twelveHourClockTime);
5
+console.log(twentyFourHourClockTime);
0 commit comments