Skip to content

Instantly share code, notes, and snippets.

@seanpmaxwell
Created October 31, 2018 04:30
Show Gist options
  • Save seanpmaxwell/e077f03f197b47db9b54ae015b8d8335 to your computer and use it in GitHub Desktop.
Save seanpmaxwell/e077f03f197b47db9b54ae015b8d8335 to your computer and use it in GitHub Desktop.
class Dog
{
makeSound(breed: string): void
{
if(breed === 'chihuahua') {
console.log('growl')
}
else if(breed === 'beagle') {
console.log('woof woof')
}
else {
console.log('bark bark')
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment