Skip to content

Commit b401696

Browse files
committed
done error 4.js
1 parent 049285a commit b401696

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

Sprint-1/errors/4.js

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,12 @@
1-
const 12HourClockTime = "20:53";
2-
const 24hourClockTime = "08:53";
1+
// const 12HourClockTime = "20:53";
2+
// 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

Comments
 (0)