Created
April 29, 2020 12:35
-
-
Save bsolomon1124/e8e89b9e2370d9ecc92c3b3da95380cf to your computer and use it in GitHub Desktop.
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 greet(person: string) { | |
return "Hello, " + person; | |
} | |
console.log(greet("you")); | |
console.log(greet([1, 2, 3])); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment