Contact: aviboots(AT)netvision.net.il
41,188 questions
53,684 answers
573 users
class CClass{ constructor(name, age) { this.name = name; this.age = age; } display() { console.log(this.name + " is " + this.age + " years old"); } } let worker = new CClass("Emma", 31); worker.display(); /* run: "Emma is 31 years old" */