ノードアプリケーションを作成していますが、コンストラクターを呼び出す変数の名前を取得したいと思います。
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の値を返したいと思います。どうすればこれを達成できますか?