'use strict';
let Person = function(name,hobby){
this.name = name;
this.hobby = hobby;
}
Person.prototype.introduction = function(){
return `私の名前は${this.name}です。趣味は${this.hobby}です。よろしくお願いします。`;
}
let Taro = new Person('太郎','映画鑑賞');
console.log(Taro.introduction());
結果:私の名前は太郎です。趣味は映画鑑賞です。よろしくお願いします。