Skip to content

Commit 9d78d99

Browse files
committed
seggesting to begin a variable name with a lowercase letter.
1 parent 7a2b695 commit 9d78d99

File tree

1 file changed

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

1 file changed

+4
-1
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
const _12HourClockTime = "20:53"; // identifier can not begin with a number
2-
2+
//or
3+
// const twelveHourClockTime = "20:53"; // this would be a valid identifier
34
const _24hourClockTime = "08:53"; // identifier can not begin with a number
5+
// or
6+
// const twentyFourHourClockTime = "08:53"; // this would be a valid identifier

0 commit comments

Comments
 (0)