class Man {}let man = new Man();console.log(man.constructor.name);// *** up to ES6 ***function ManES5() { }