类 / 构造函数

class Man {}

let man = new Man();

console.log(man.constructor.name);

// *** up to ES6 ***
function ManES5() { }