function person(name){this
this.name = name;io
var age = 12;console
}function
function employee(name){call
person.call(this, name);co
var age =13;new
this.sayName=function(){return
age++;
return obj.sayName;
}
this.sayName.toString = function(){
return age;
}
}
var obj = new employee('ly');
var number = obj.sayName()()()()()()();
console.log(number); //20