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 dc0e00d commit 5726e67Copy full SHA for 5726e67
Sprint-1/2-mandatory-errors/4.js
@@ -5,9 +5,9 @@
5
* In javascript variable can't start with a number
6
* Can contain letters, digits (but not at the start), underscore _, and dollar signs $
7
*
8
- * const 12HourClockTime = "20:53"; will cause a SyntaxError because variable names can't begin with a number.
+ * const 12HourClockTime = "20:53"; will cause a SyntaxError because variable name can't begin with a number.
9
10
- * To fix it by changing the name to start with a letter.
+ * To fix it need to chang the name to start with a letter.
11
*/
12
13
const twelveHourClockTime = "08:53";
0 commit comments