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 b710983 commit 9514edfCopy full SHA for 9514edf
Sprint-1/2-mandatory-errors/1.js
@@ -2,4 +2,6 @@
2
3
let age = 33;
4
age = age+1
5
-console.log(age)
+console.log(age)
6
+
7
+//const sets the value as a constant you can't change
Sprint-1/2-mandatory-errors/2.js
@@ -1,5 +1,6 @@
1
// Currently trying to print the string "I was born in Bolton" but it isn't working...
// what's the error ?
-
-console.log(`I was born in ${cityOfBirth}`);
const cityOfBirth = "Bolton";
+console.log(`I was born in ${cityOfBirth}`);
+//wrong order
0 commit comments