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 4793b3d commit 0e312daCopy full SHA for 0e312da
Sprint-1/2-mandatory-errors/2.js
@@ -3,3 +3,9 @@
3
4
console.log(`I was born in ${cityOfBirth}`);
5
const cityOfBirth = "Bolton";
6
+
7
+// The variable cityOfBirth should be declared before it is used in the console.log statement.
8
+/*
9
+const cityOfBirth = "Bolton";
10
+console.log(`I was born in ${cityOfBirth}`);
11
+*/
0 commit comments