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 2515a68 commit d0a5241Copy full SHA for d0a5241
Sprint-1/2-mandatory-errors/2.js
@@ -1,6 +1,6 @@
1
// Currently trying to print the string "I was born in Bolton" but it isn't working...
2
// what's the error ?
3
-
4
-console.log(`I was born in ${cityOfBirth}`);
5
const cityOfBirth = "Bolton";
+console.log(`I was born in ${cityOfBirth}`);
+
6
Because the const varibale is decalred after it is used in the console={.log} statement and it should be decalred befor to be executed.
0 commit comments