You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Currently trying to print the string "I was born in Bolton" but it isn't working...
2
2
// what's the error ?
3
3
4
-
console.log(`I was born in ${cityOfBirth}`);
4
+
//console.log(`I was born in ${cityOfBirth}`);
5
+
//const cityOfBirth = "Bolton";
6
+
// these are in the wrong order. Cannot access the value of cityOfBirth before it has been declared. Need to declare the variable first and then log it to the console.
0 commit comments