コンストラクタについて
test.ts
//コンストラクタの引数を使ってプロパティを宣言することができる
//アクセス制御の装飾子をつけると、それがそのままプロパティになる。
class Test{
constructor(public prop: string) {
}
}
const test = new Test("testprop");
console.log(test.prop); //-> "testprop"
Go to list of users who liked
More than 1 year has passed since last update.
コンストラクタについて
//コンストラクタの引数を使ってプロパティを宣言することができる
//アクセス制御の装飾子をつけると、それがそのままプロパティになる。
class Test{
constructor(public prop: string) {
}
}
const test = new Test("testprop");
console.log(test.prop); //-> "testprop"
Register as a new user and use Qiita more conveniently
Go to list of users who liked