Skip to content

Commit 3a7a725

Browse files
committed
JS types code snippet fix
1 parent 3cd19b7 commit 3a7a725

File tree

1 file changed

+1
-1
lines changed
  • Chapter2/Section2-Basic-types/Understanding-JavaScript-types

1 file changed

+1
-1
lines changed

Chapter2/Section2-Basic-types/Understanding-JavaScript-types/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ let date = new Date(2022, 10, 1);
66
console.log("date", date, typeof date);
77

88
score = "ten"
9-
console.log("score", score, typeof firstName);
9+
console.log("score", score, typeof score);

0 commit comments

Comments
 (0)