Skip to content

Commit 1f8035e

Browse files
authored
replace variable value with the variable
1 parent 4636a5b commit 1f8035e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/9/en/part9a.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const birthdayGreeter = (name: string, age: number): string => {
5151
const birthdayHero = "Jane User";
5252
const age = 22;
5353

54-
console.log(birthdayGreeter(birthdayHero, 22));
54+
console.log(birthdayGreeter(birthdayHero, age));
5555
```
5656

5757
#### Structural typing

0 commit comments

Comments
 (0)