Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Human {
- constructor(name) {
- this.name = name;
- }
- }
- const HumanFunc = function(name) {
- this.name = name;
- };
- const human1 = new Human('Ivan');
- const human2 = new HumanFunc('Ivan');
- console.log(human1);
- console.log(human2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement