Advertisement
nikolayneykov92

Untitled

Jan 12th, 2020
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class Human {
  2.   constructor(name) {
  3.     this.name = name;
  4.   }
  5. }
  6.  
  7. const HumanFunc = function(name) {
  8.   this.name = name;
  9. };
  10.  
  11. const human1 = new Human('Ivan');
  12. const human2 = new HumanFunc('Ivan');
  13.  
  14. console.log(human1);
  15. console.log(human2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement