Skip to content

Instantly share code, notes, and snippets.

@pboethig
Created July 31, 2016 17:16
Show Gist options
  • Save pboethig/0bbb93918d59001602cb398eef4c307c to your computer and use it in GitHub Desktop.
Save pboethig/0bbb93918d59001602cb398eef4c307c to your computer and use it in GitHub Desktop.
interface IPerson {
firstName: string;
lastName:string;
}
/**
* @param Person person
*/
function printPerson(Person:IPerson) {
return 'Hi ,'+ Person.firstName + ' ' + Person.lastName
}
var person = {firstName:'Peter', lastName:'Boethig'}
document.body.innerHTML = printPerson(person);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment