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 bbcddb9 commit 5b0c0bcCopy full SHA for 5b0c0bc
Sprint-1/2-mandatory-errors/1.js
@@ -2,3 +2,7 @@
2
3
const age = 33;
4
age = age + 1;
5
+
6
7
+// The error message is "Assignment to constant variable", which means that a variable declared with the 'const' keyword
8
+// cannot be reassigned to a new value after its initial declaration.
0 commit comments