まず、私のコードを参照してください。
function test(){
this.item = 'string';
this.exec = function(){
something();
}
function something(){
console.log(this.item);
console.log('string');
}
}
そして、このコードのように、クラスを作成して「exec関数」を呼び出します
var t = new test();
t.exec();
しかし結果は…
undefined
string
何かの関数からtest.itemにアクセスしたい。
何か解決策はありますか?