Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. var Person = /** @class */ (function () {
  2. function Person(name, age) {
  3. this.name = name;
  4. this.age = age;
  5. }
  6. Person.prototype.tellMyName = function () {
  7. console.log("I am " + this.name);
  8. };
  9. Person.prototype.tellMyAge = function () {
  10. console.log("I am " + this.age + " years old");
  11. };
  12. return Person;
  13. }());
  14. var john = new Person("John", 40);
  15. var mary = new Person("Mary", 35);
  16. john.tellMyName();
  17. john.tellMyAge();
  18. mary.tellMyName();
  19. mary.tellMyAge();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement