Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Below is a ES5 shim for JS binding.I dont understand self.apply in the bound function. I know how to use apply method, but where is self pointing to in this case ? It it supposed to be a
function, but here self looks like an object.

if ( !Function.prototype.bind ) {

       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 || {} ), // self in this line is supposed  
        to // represent a function ?
        args.concat( slice.call(arguments) ) );
        };

        nop.prototype = self.prototype;
        bound.prototype = new nop();
        return bound;
        };
  }
share|improve this question

2 Answers

up vote -1 down vote accepted

Have in mind that in javascript almost everything is an object.

So you have it right there:

self = this

So, self is not representing anything, self is the instance.

share|improve this answer

Self is the global scope object. In a window, it is the window object. Sometimes this is not the case however, in a web worker it is the worker's equivalent of the window object, since the window it outside of the scope of the worker.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.