Skip to content

Commit 75c8e3e

Browse files
authored
Merge pull request #1946 from levonml/source
replace the value with the variable
2 parents 4636a5b + 1f8035e commit 75c8e3e

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)