[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
'use strict';
class Person {
constructor(name,hobby) {
this.name = name;
this.hobby = hobby;
}
//メソッド
selfIntroduction(){
return `私の名前は${this.name}です。趣味は${this.hobby}です。よろしくお願いします。`;
}
}
const Taro = new Person('太郎','映画鑑賞');
console.log(Taro.selfIntroduction());