Why does assigning a this to a var break jshint.com
I know how to bypass it in jshint.com.
Also, I know how to get rid of it.
But I want to know what definition of strict this breaks.
Example Code
function vFlipBP( element_or_string ) {
var previous_page_element,
previous_tag_element,
current_page_element,
select_element;
if( typeof ( element_or_string ) === 'string' ) {
select_element = document.getElementById( element_or_string );
} else {
select_element = this; // Possible strict violation <- error here
}
.
.
.
Call Type 1
document.getElementById( this.tag_array[element] ).onclick = vFlipBP;
Call Type 2
vFlipBP( this.tag_array[0] ); // string parameter
vFlipBP? Do you use.call()/.apply()ornew? Or are you doing regular function invocations? – Šime Vidas Aug 11 '12 at 20:39thiscould be different than if you're not. This depends on how the function is invoked. – squint Aug 11 '12 at 20:39thiswill be the global object, unless you're in strict mode, in which case it will beundefined. So what it ultimately means is that the value ofthismay not be what you expect. But you've got that scenario covered, as long as you always pass a string argument for that call type. – squint Aug 11 '12 at 20:51string_or_event_object_or_undefined. In standards compliant browsers, the first argument to a handler is theeventobject, butundefinedin non-compliant browsers, like IE8 and lower. ...though if you've no use for theeventobject, you might as well consider itundefined. – squint Aug 11 '12 at 20:57