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 6b61b4c commit c77d6f3Copy full SHA for c77d6f3
Sprint-1/2-mandatory-errors/1.js
@@ -3,4 +3,5 @@
3
const age = 33;
4
age = age + 1;
5
//the "age" variable has been declared with a const and already assigned a value and it can not
6
-// be reassigned another value because of the "const"
+// be reassigned another value because of the "const"
7
+// "age" should be declared with "let" to be able to change it's value
0 commit comments