Skip to content

Commit afc7816

Browse files
committed
mandatory error-3
1 parent 0a27532 commit afc7816

File tree

1 file changed

+3
-1
lines changed
  • Sprint-1/2-mandatory-errors

1 file changed

+3
-1
lines changed

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 ?
3+
// we need to declare the variable before we use it in the console.log statement
4+
35

4-
console.log(`I was born in ${cityOfBirth}`);
56
const cityOfBirth = "Bolton";
7+
console.log(`I was born in ${cityOfBirth}`);

0 commit comments

Comments
 (0)