我正在编写一个节点应用程序,我想获取调用构造函数的变量的名称。
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());
正如评论所说,我想返回 a.test 和 b.test 的值。我怎样才能做到这一点?