私は3つのテキスト変数を持つJavascriptクラスを持っています:
myClasss = function(){
this.color = "yellow";
this.type = "car";
this.other = this.type + ", " + this.color;
}
クラスにエラーがあります。どうすれば記入できthis.Other
ますか?
私は3つのテキスト変数を持つJavascriptクラスを持っています:
myClasss = function(){
this.color = "yellow";
this.type = "car";
this.other = this.type + ", " + this.color;
}
クラスにエラーがあります。どうすれば記入できthis.Other
ますか?