Skip to content

Instantly share code, notes, and snippets.

@ajchambeaud
Created March 13, 2017 22:05
Show Gist options
  • Save ajchambeaud/f15a3067b121b3ba97efa61026606b09 to your computer and use it in GitHub Desktop.
Save ajchambeaud/f15a3067b121b3ba97efa61026606b09 to your computer and use it in GitHub Desktop.
interface Person {
firstName: string;
lastName: string;
}
function greeter(person: Person) {
return "Hello, " + person.firstName + " " + person.lastName;
}
var user = { firstName: "Jane", lastName: "User" };
document.body.innerHTML = greeter(null);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment