1
これらの関数の違いは何ですか?利点と欠点は何ですか?JavaScriptプロトタイプ関数
let Test = function(name) {
this.name = name;
this.complete = function() {
console.log(`completing task${this.name}`)
}
}
と
let Test = function(name) {
this.name = name;
}
Test.prototype.complete = function() {
console.log(`completing task${this.name}`)
}