Consider this simple code:
"use strict";
var obj = {
f: function() {
this.prop = 'value';
g.bind( this )();
}
};
function g() {
console.log( this.prop );
}
If I try to validate this code, jshint gives me the error Possible strict violation. where I call console.log( this.prop );. This is because this is undefined in strict mode in a function.
But I'm binding this function before calling it, so this is the correct object.
I'm using this "design pattern" to avoid cluttering the main object. Passing the properties in the parameters will also clutter the function, so I refuse to do this. Besides, this is exactly what bind is for.
Is there a way for jshint to let me do this?
bindmatter, I think it should remain a warning, not an error. Dunno... – Florian Margaine Aug 21 '12 at 14:47.bind()– rlemon Aug 21 '12 at 14:55bindis for" - Well, here, you may want to just dog.call(this), I guess. (Not sure if it solves the issue, though.) If you want to bindgby default, you could dovar g = function() { }.bind(obj)instead, that stops jshint with complaining. – pimvdb Aug 21 '12 at 17:06