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
+
//Uncaught ReferenceError ReferenceError: Cannot access 'cityOfBirth' before initialization is thrown because we are trying to access cityOfBirth before it is declared.
0 commit comments