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 ed5a33c commit 772f314Copy full SHA for 772f314
1 file changed
Sprint-1/2-mandatory-errors/1.js
@@ -1,6 +1,6 @@
1
2
-const age = 33;
+let age = 33;
3
age = age + 1;
4
5
-// There is a constant variable age, which is fixed and it's value cannot be reassigned.//
6
-// If we want to change the value of age, we have to use let instead of const. //
+// There is a constant variable age, which is fixed and it's value cannot be reassigned.
+// If we want to change the value of age, we have to use let instead of const.
0 commit comments