次のシナリオで親関数の「var」変数にアクセスするにはどうすればよいですか (リセット関数の定義しか編集できません)。
_.bind(function(){
var foo = 5;
var reset = function(){
foo = 6; //this changes foo,
bar = 7; //**I want this to add another "var", so I don't pollute global scope
}
reset();
console.log(foo); //6
console.log(bar); //7
}, window);