Skip to content

Instantly share code, notes, and snippets.

@Cynnah
Created July 24, 2019 07:35
Show Gist options
  • Save Cynnah/73ee4a5ca480837c021c8c014ccebe51 to your computer and use it in GitHub Desktop.
Save Cynnah/73ee4a5ca480837c021c8c014ccebe51 to your computer and use it in GitHub Desktop.
First quest Typescript
function hello(name: string) {
console.log("Hello " + name);
}
var firstName = "bob";
hello(firstName);
hello(firstName + " marley");
function concat(a: string, b: string) {
return a + b;
}
var wcs = concat("Wild", concat("Code", "School"));
console.log(wcs);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment