admin管理员组文章数量:1347200
On Mozilla Developer Center, there is a page about the Function.prototype.bind
function and provides a patibility function for browsers which do not support this function.
However, when analyzing this patibility code I cannot find out why they use instanceof nop
. nop
has been set to function() {}
. What part of the ECMA specification on bind
does this correspond with? And what variables are an instance of function() {}
?
The following returns false
, so I don't pletely know what it is used for. What things return true when doing an instanceof function() {}
check?
(function() {}) instanceof (function() {}) // false
The code is as follows:
Function.prototype.bind = function( obj ) {
if(typeof this !== 'function')
throw new TypeError('Function.prototype.bind - what is trying to be bound is not callable');
var slice = [].slice,
args = slice.call(arguments, 1),
self = this,
nop = function () {},
bound = function () {
return self.apply( this instanceof nop ? this : ( obj || {} ),
args.concat( slice.call(arguments) ) );
};
bound.prototype = this.prototype;
return bound;
};
On Mozilla Developer Center, there is a page about the Function.prototype.bind
function and provides a patibility function for browsers which do not support this function.
However, when analyzing this patibility code I cannot find out why they use instanceof nop
. nop
has been set to function() {}
. What part of the ECMA specification on bind
does this correspond with? And what variables are an instance of function() {}
?
The following returns false
, so I don't pletely know what it is used for. What things return true when doing an instanceof function() {}
check?
(function() {}) instanceof (function() {}) // false
The code is as follows:
Function.prototype.bind = function( obj ) {
if(typeof this !== 'function')
throw new TypeError('Function.prototype.bind - what is trying to be bound is not callable');
var slice = [].slice,
args = slice.call(arguments, 1),
self = this,
nop = function () {},
bound = function () {
return self.apply( this instanceof nop ? this : ( obj || {} ),
args.concat( slice.call(arguments) ) );
};
bound.prototype = this.prototype;
return bound;
};
Share
Improve this question
edited Dec 28, 2011 at 15:40
Tom van der Woerdt
30k7 gold badges74 silver badges105 bronze badges
asked Jun 16, 2011 at 17:30
pimvdbpimvdb
155k80 gold badges311 silver badges356 bronze badges
2 Answers
Reset to default 8Someone edited out the part that makes it useful. Here's what it used to look like:
Function.prototype.bind = function( obj ) {
var slice = [].slice,
args = slice.call(arguments, 1),
self = this,
nop = function () {},
bound = function () {
return self.apply( this instanceof nop ? this : ( obj || {} ),
args.concat( slice.call(arguments) ) );
};
// These lines are the important part
nop.prototype = self.prototype;
bound.prototype = new nop();
return bound;
};
I answered another question that was asking the same thing (but when the code was correct) here: mozilla's bind function question.
The reason for the this instanceof nop
check is so that if you call the bound function as a constructor (i.e. with the new
operator), this
is bound to the new object instead of whatever you passed to bind
.
To explain the "important part", nop
is basically getting inserted into the prototype chain so that when you call the function as a constructor, this
is an instance of nop
.
So if you run var bound = original.bind(someObject);
the prototype chain will look like this:
original | nop | bound
My guess for why they used nop
instead of this instanceof self
is so that the bound function would have it's own prototype
property (that inherits from self
's). It's possible that it's not supposed to which could be why it got partially edited out. Regardless, the code as it is now is not correct, but will work as long as you don't use the function as a constructor.
There seems to be an error with that implementation. nop
is never used (to instantiate anything) expect for that instanceof
check, which can never be true for anything since no object can be instantiated from nop
, which is buried deep in that closure.
Consider this:
// Identical definition, but different Function instances
var nop = function () {},
mop = function () {};
var obj1 = new mop;
obj1 instanceof mop // true
obj1 instanceof nop // false
本文标签: javascriptReason behind using 39instanceof function() 39Stack Overflow
版权声明:本文标题:javascript - Reason behind using 'instanceof function() {}'? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743832601a2546800.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论