Animal.ts 245 B

1234567891011121314151617
  1. export class Animal {
  2. type : string;
  3. name : string;
  4. constructor (name : string) {
  5. this.type = 'animal';
  6. this.name = name;
  7. }
  8. greet () {
  9. return "Hello, I'm a "+this.type+", I'm "+this.name;
  10. }
  11. }