我写的是一句话,我希望获得援引建筑商的变数的名称。
a=new constructorFunction();
b=new constructorFunction();
function constructorFunction(){
this.test="it works!";
this.doSomething=function(){
//this should return the contents of this.test
}
}
console.log(a.doSomething());
console.log(b.doSomething());
正如评论所言,我要回过一次测试和测试的价值观。 我如何能够做到这一点?