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 0d9eb1d commit 16c3259Copy full SHA for 16c3259
Sprint-1/2-mandatory-errors/1.js
@@ -2,3 +2,7 @@
2
3
let age = 33;
4
age = age + 1;
5
+
6
+// const are variables which value cannot change
7
+// let is a variable which value can be updated
8
+// to fix the error I modified the variable declaration and used let instead of const
0 commit comments