次のような関数内で定義されている変数にアクセスするにはどうすればよいですか。
var functionVar = function(){
this.var = 1;
}
console.log(functionVar().var); //MH - obviously this doesn't work, but I'm looking for the command that will log that variable
次のような関数内で定義されている変数にアクセスするにはどうすればよいですか。
var functionVar = function(){
this.var = 1;
}
console.log(functionVar().var); //MH - obviously this doesn't work, but I'm looking for the command that will log that variable