Skip to content

Instantly share code, notes, and snippets.

@lebowvsky
Created May 18, 2020 22:39
Show Gist options
  • Save lebowvsky/99e6cd1f34eeee85454c1c049dad93ef to your computer and use it in GitHub Desktop.
Save lebowvsky/99e6cd1f34eeee85454c1c049dad93ef to your computer and use it in GitHub Desktop.
Découverte du 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