クラスとインスタンスについて
クラス
class Post{
constructor(text){
this.text = text;
this.likeCount = 0;
}
show(){...},
}
↓ クラスから作られるオブジェクトのこと
インスタンス
new Post("Hello")
↓
{
text: "Hello",
likeCount: 0,
show(){...},
}
この記事が気に入ったらサポートをしてみませんか?
クラス
class Post{
constructor(text){
this.text = text;
this.likeCount = 0;
}
show(){...},
}
↓ クラスから作られるオブジェクトのこと
インスタンス
new Post("Hello")
↓
{
text: "Hello",
likeCount: 0,
show(){...},
}
この記事が気に入ったらサポートをしてみませんか?