Contact: aviboots(AT)netvision.net.il
39,855 questions
51,776 answers
573 users
class CTest { constructor(_name, _age){ this.name = _name; this.age = _age; } show(){ console.log(this.name, this.age); } } const obj = new CTest("Tom", 46) console.log(obj.name); console.log(obj.age); obj.show(); /* run: Tom 46 Tom 46 */