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 5dab8a6 commit 6e76b0dCopy full SHA for 6e76b0d
Sprint-1/2-mandatory-errors/1.js
@@ -2,7 +2,10 @@
2
3
//const age = 33;
4
5
-// we need to replace "const" with "let"
+// we need to replace "const" with "let", in javascript "const" is usd for variable
6
+// that will nor change / will be kept constant troughout the code, where is "let"
7
+// lets us to reassign variable later as we have done in the lines below the variabel age
8
+// gets updated by one...
9
10
let age = 33;
11
age = age + 1;
0 commit comments