Created
October 19, 2025 23:46
-
-
Save al3xnag/a8d7d918d8a97e895844fe0803e6cd2c to your computer and use it in GitHub Desktop.
sayHello
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function sayHello(name: string, greeting: string = "Hello"): string { | |
| return `${greeting}, ${name}!`; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment