var v = {
foo: (function () {
return this;
}.bind(this))
};
What is the value of this when passed to the bind invocation (and why)?
var v = {
foo: (function () {
return this;
}.bind(this))
};
What is the value of this when passed to the bind invocation (and why)?