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 3bb0a7c commit 8665943Copy full SHA for 8665943
Sprint-1/2-mandatory-errors/1.js
@@ -1,7 +1,9 @@
1
// trying to create an age variable and then reassign the value by 1
2
3
//create variable age
4
-const age = 33;
+let age = 33;
5
6
//reassign variable age by 1 (+1)
7
age = age + 1;
8
+
9
+console.assert(age); //Oh no.. that is mr. const
0 commit comments