Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. class Bird {
  2. constructor(name) {
  3. this.type = 'bird';
  4. this.name = name;
  5. }
  6. printName() {
  7. console.log(this.name);
  8. }
  9. printType() {
  10. console.log(this.type);
  11. }
  12. }
  13. const b = new Bird('hi');
  14. b.printName();
  15. b.printType();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement