Contact: aviboots(AT)netvision.net.il
39,894 questions
51,825 answers
573 users
class Worker { constructor(id, name) { this.id = id; this.name = name; } static show() { console.log("show()"); } } const w = new Worker(2345, 'Tom'); Worker.show(); /* run: show() */