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 3c9fb3a commit c882576Copy full SHA for c882576
Sprint-1/2-mandatory-errors/0.js
@@ -1,2 +1,4 @@
1
This is just an instruction for the first activity - but it is just for human consumption
2
-We don't want the computer to run these 2 lines - how can we solve this problem?
+We don't want the computer to run these 2 lines - how can we solve this problem?
3
+
4
+// We can use a comment to prevent the computer from running these lines.
Sprint-1/2-mandatory-errors/1.js
@@ -1,4 +1,8 @@
// trying to create an age variable and then reassign the value by 1
-const age = 33;
+let age = 33;
age = age + 1;
5
6
+console.log(age);
7
8
0 commit comments