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 b76c5a3 commit 0748f7cCopy full SHA for 0748f7c
Sprint-1/2-mandatory-errors/1.js
@@ -1,4 +1,5 @@
1
-// trying to create an age variable and then reassign the value by 1
+// Trying to create an age variable and then reassign the value by 1
2
3
-const age = 33;
4
-age = age + 1;
+let age = 33; // Declare a variable called age and assign it the value 33
+age = age + 1; // Reassign age to be its current value plus 1
5
+console.log(age); // Output: 34
0 commit comments