Skip to content

Commit f90297a

Browse files
Rectify the inconsistency with naming variables.
1 parent 851cc57 commit f90297a

File tree

1 file changed

+2
-2
lines changed
  • Sprint-1/2-mandatory-errors

1 file changed

+2
-2
lines changed

Sprint-1/2-mandatory-errors/4.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
const Hour12ClockTime = "20:53";
1+
const hour12ClockTime = "20:53";
22
const hour24ClockTime = "08:53";
33

4-
console.log(Hour12ClockTime); //"20;53"
4+
console.log(hour12ClockTime); //"20;53"
55
console.log(hour24ClockTime); // "08:53"
66

77
// SyntaxError: Invalid or unexpected token.

0 commit comments

Comments
 (0)