d.age()
この例でが機能しないのはなぜですか?
function Dog(input) {
this.name = input;
this.color = function(){
return 'black';
}
this.age = function(){
setTimeout(function(){
return '10';
}, 500);
}
}
window.d = new Dog('Blacky');