Skip to content

Commit c056344

Browse files
committed
fix 2.js -> changed so cityOfBirth is declared as a variable before using it in console.log
1 parent 8d4e8a1 commit c056344

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • Sprint-1/2-mandatory-errors

Sprint-1/2-mandatory-errors/2.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
// Currently trying to print the string "I was born in Bolton" but it isn't working...
22
// what's the error ?
33

4-
console.log(`I was born in ${cityOfBirth}`);
54
const cityOfBirth = "Bolton";
5+
console.log(`I was born in ${cityOfBirth}`);
6+
7+
// cityOfBirth has to be declared as a variable before we can use it in the console.log statement.

0 commit comments

Comments
 (0)