首页课程JavaScriptの楽しいクラスメソッドの追加

メソッドの追加

目录列表

方法中的“this”关键字是指:

请将下面的“testData”构造函数与名为“mymethod”的方法相关联:

function testData (first, second) { this.first = first; this.second = second; this.checkData =; }

为了在函数中使用对象的属性,请使用:

1/3