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

I have noticed that there doesn’t appear to be a clear explanation of what the "this" keyword is and how it is correctly (and incorrectly) used in JavaScript on the stackoverflow site.

I have witnessed some very strange behaviour with it and have failed to understand why it has occurred.

Would anyone care to explain to me how “this” works and when it should be used?

share|improve this question
I found this when I googled "this" quirksmode.org/js/this.html – Wai Wong Jun 27 '10 at 13:15
2  
Peter Michaux advocates against the use of this peter.michaux.ca/articles/javascript-widgets-without-this – Marcel Korpel Jun 27 '10 at 14:53
possible duplicate of How does "this" keyword work within a JavaScript object literal? – Shog9 Jun 27 '10 at 16:36
Well no this is not a duplicate question. It is a much more general question, it just so happens that the answer on stackoverflow.com/questions/133973/… is very general, and would answer this question. – cdiggins Sep 30 '11 at 2:28
show 2 more comments

7 Answers

up vote 132 down vote accepted

I recommend reading Mike West's article Scope in JavaScript (mirror1 mirror2) first. It is an excellent, friendly introduction to the concepts of this and scope chains in JavaScript.

Once you start getting used to this, the rules are actually pretty simple. The ECMAScript Standard defines this as a keyword that "evaluates to the value of the ThisBinding of the current execution context" (§11.1.1). ThisBinding is something that the JavaScript interpreter maintains as it evaluates JavaScript code, like a special CPU register which holds a reference to an object. The interpreter updates the ThisBinding whenever establishing an execution context in one of only three different cases:

  1. Initial global execution context

    This is the case for JavaScript code that is evaluated when a <script> element is encountered:

    <script type="text/javascript">//<![CDATA[
    alert("I'm evaluated in the initial global execution context!");
    
    setTimeout(function () {
        alert("I'm NOT evaluated in the initial global execution context.");
    }, 1);
    //]]></script>
    

    When evaluating code in the initial global execution context, ThisBinding is set to the global object, window (§10.4.1.1).

  2. Entering eval code

    • ... by a direct call to eval()

      ThisBinding is left unchanged; it is the same value as the ThisBinding of the calling execution context (§10.4.2(2)(a)).

    • ... if not by a direct call to eval()

      ThisBinding is set to the global object as if executing in the initial global execution context (§10.4.2(1)).

  3. Entering function code

    This occurs when calling a function. If a function is called on an object, such as in obj.myMethod() or the equivalent obj["myMethod"](), then ThisBinding is set to the object (obj in the example; §13.2.1). In most other cases, ThisBinding is set to the global object (§10.4.3).

    The reason for writing "in most other cases" is because there are eight ECMAScript 5 built-in functions that allow ThisBinding to be specified in the arguments list. These special functions take a so-called thisArg which becomes the ThisBinding when calling the function (§10.4.3).

    These special built-in functions are:

    • Function.prototype.apply( thisArg, argArray )
    • Function.prototype.call( thisArg [ , arg1 [ , arg2, ... ] ] )
    • Function.prototype.bind( thisArg [ , arg1 [ , arg2, ... ] ] )
    • Array.prototype.every( callbackfn [ , thisArg ] )
    • Array.prototype.some( callbackfn [ , thisArg ] )
    • Array.prototype.forEach( callbackfn [ , thisArg ] )
    • Array.prototype.map( callbackfn [ , thisArg ] )
    • Array.prototype.filter( callbackfn [ , thisArg ] )


    In the case of the Function.prototype functions, they are called on a function object, but rather than setting ThisBinding to the function object, ThisBinding is set to the thisArg.

    In the case of the Array.prototype functions, the given callbackfn is called in an execution context where ThisBinding is set to thisArg if supplied; otherwise, to the global object.

Those are the rules for plain JavaScript. When you begin using JavaScript libraries (e.g. jQuery), you may find that certain library functions manipulate the value of this. The developers of those JavaScript libraries do this because it tends to support the most common use cases, and users of the library typically find this behavior to be more convenient. When passing callback functions referencing this to library functions, you should refer to the documentation for any guarantees about what the value of this is when the function is called.

If you are wondering how a JavaScript library manipulates the value of this, the library is simply using one of the built-in JavaScript functions accepting a thisArg. You, too, can write your own function taking a callback function and thisArg:

function doWork(callbackfn, thisArg) {
    //...
    if (callbackfn != null) callbackfn.call(thisArg);
}

EDIT:

I forgot a special case. When constructing a new object via the new operator, the JavaScript interpreter creates a new, empty object, sets some internal properties, and then calls the constructor function on the new object. Thus, when a function is called in a constructor context, the value of this is the new object that the interpreter created:

function MyType() {
    this.someData = "a string";
}

var instance = new MyType();
// Kind of like the following, but there are more steps involved:
// var instance = {};
// MyType.call(instance);

QUIZ: Just for fun, test your understanding with the following examples.

To reveal the answers, mouse over the gray boxes.

  1. What is the value of this at line A? Why?

    <script type="text/javascript">
    if (true) {
        // Line A
    }
    </script>
    

    window

    Line A is evaluated in the initial global execution context.

  2. What is the value of this at line B? Why?

    <script type="text/javascript">
    var obj = {
        someData: "a string"
    };
    
    function myFun() {
        // Line B
    }
    
    obj.staticFunction = myFun;
    
    obj.staticFunction();
    </script>
    

    obj

    When calling a function on an object, ThisBinding is set to the object.

  3. What is the value of this at line C? Why?

    <script type="text/javascript">
    var obj = {
        myMethod : function () {
            // Line C
        }
    };
    var myFun = obj.myMethod;
    myFun();
    </script>
    

    window

    In this example, the JavaScript interpreter enters function code, but because myFun/obj.myMethod is not called on an object, ThisBinding is set to window.

    This is different from Python, in which accessing a method (obj.myMethod) creates a bound method object.

  4. What is the value of this at line D? Why?

    <script type="text/javascript">
    function myFun() {
        // Line D
    }
    var obj = {
        myMethod : function () {
            eval("myFun()");
        }
    };
    obj.myMethod();
    </script>
    

    window

    This one was tricky. When evaluating the eval code, this is obj. However, in the eval code, myFun is not called on an object, so ThisBinding is set to window for the call.

  5. What is the value of this at line E?

    <script type="text/javascript">
    function myFun() {
        // Line E
    }
    var obj = {
        someData: "a string"
    };
    myFun.call(obj);
    </script>
    

    obj

    The line myFun.call(obj); is invoking the special built-in function Function.prototype.call(), which accepts thisArg as the first argument.

share|improve this answer
2  
@Daniel Trebbien, Simply awesome! Though IMHO, it would be better if your question #2 be rephrased from What is the value of this at line B? to What is the value of this at line B when obj.staticFunction() is executed? because you can still execute myFun() in which case Line B would still evaluate this to Window. Just to make it clearer. – supertonsky Dec 19 '12 at 7:38
Awesome answer! Very helpful. I have found though that this changes inside of objects and objects inside of objects too, so it's got to be more than those 3 cases, right? – Kevin Beal Apr 2 at 16:35
@KevinBeal: I am not sure what you mean. If you post a jsFiddle, I will take a look. – Daniel Trebbien Apr 2 at 17:29
@DanielTrebbien I feel a bit silly. I neglected to notice that when I was console.log()-ing this I was inside of a new function which you addressed in your answer. By object, I simply meant an object literal. – Kevin Beal Apr 2 at 18:57
@KevinBeal: No problem. To answer your original question, though, these should be all of the cases. – Daniel Trebbien Apr 2 at 23:04
show 1 more comment

"this" is all about scope. Every function has it's own scope, and since everything in JS is an object, even a function can store some values into itself using "this". OOP 101 teaches that "this" is only applicable to instances of an object. Therefore, every-time a function executes, a new "instance" of that function has a new meaning of "this".

Most people get confused when they try to use "this" inside of anonymous closure functions like:

(function(value) {
    this.value = value;
    $('.some-elements').each(function(elt){
        elt.innerHTML = this.value;        // uh oh!! possibly undefined
    });
})(2);

So here, inside each(), "this" doesn't hold the "value" that you expect it to (from

this.value = value;
above it). So, to get over this (no pun intended) problem, a developer could:

(function(value) {
    var self = this;            // small change
    self.value = value;
    $('.some-elements').each(function(elt){
        elt.innerHTML = self.value;        // phew!! == 2 
    });
})(2);

Try it out; you'll begin to like this pattern of programming

share|improve this answer
1  
"everything in JS is an object" is not true, JavaScript also has primitive values, see bclary.com/2004/11/07/#a-4.3.2 – Marcel Korpel Jun 27 '10 at 14:47
4  
The primitive values seem to have some methods on themselves, like String#substring(), Number#toString(), etc.. So, maybe not with the same nomenclature as that article, they really behave as if they were objects (they are all prototyped, ie. String#substring() is really: String.prototype.substring = function(){...}). Please correct me if I'm wrong. – arunjitsingh Jul 4 '10 at 16:49
The this keyword has nothing to do with scope. Also, it has a meaning also in functions that are not properties of objects. – Bergi Dec 8 '12 at 20:59

It is difficult to get a good grasp of JS, or write more than anything trivial in it, if you don't understand it thoroughly. You cannot just afford to take a quick dip :) I think the best way to get started with JS is to first watch these video lectures by Douglas Crockford - http://yuiblog.com/crockford/, which covers this and that, and everything else about JS.

share|improve this answer
+1 Crockford should be the first step in anyone's journey into JS. His book chapters (available for free online) got me on my feet very fast indeed. He goes straight for the crucial bits. – Nick Wiggill Oct 23 '12 at 23:45

Every function in javascript has a scope. Whatever that scope is, is referenced by "this". You can change that scope by doing func.call or func.apply.

By default, and what confuses most beginners, when a callback is called after an event is raised on a DOM element, the scope of the function is the DOM element.

jQuery makes this trivial to change with jQuery.proxy.

share|improve this answer
5  
It's a little more correct to say that every function call has a scope. In other words, what's confusing about this in Javascript is that it's not an intrinsic property of the function itself, but rather an artifact of the way the function is invoked. – Pointy Jun 27 '10 at 14:34

Whould this help? (Most confusion of 'this' in javascript is coming from the fact that it generally is not linked to your object, but to the current executing scope -- that might not be exactly how it works but is always feels like that to me -- see the article for a complete explanation)

share|improve this answer

I'd like to share my idea about keeping score of multiple this references, because var self = this; seems pretty nasty and prone to error. By using an array you don't have to worry about naming conventions and you can nest as deep as you want.

var thisStack = [];
thisStack.push(this); 
// thisStack[0] --> window

var myObj = {
    init: function(){
        thisStack.push(this);
        // thisStack[0] --> window
        // thisStack[1] --> myObj instance

        ...
        thisStack.pop(); // clean up your array just before you leave a scope
    }
}
// thisStack[0] --> window

If anyone sees trouble with this approach, please let me know. I'm aware that it can grow quite maintainance intensive, but it might be worth the trade-off.

share|improve this answer

Daniel, awesome explanation! A couple of words on this and good list of this execution context pointer in case of event handlers.

In two words, this in JavaScript points the object from whom (or from whose execution context) the current function was run and it's always read-only, you can't set it anyway (such an attempt will end up with 'Invalid left-hand side in assignment' message.

For event handlers: inline event handlers, such as <element onclick="foo">, override any other handlers attached earlier and before, so be careful and it's better to stay off of inline event delegation at all. And thanks to Zara Alaverdyan who inspired me to this list of examples through a dissenting debate :)

  • el.onclick = foo; // in the foo - obj
  • el.onclick = function () {this.style.color = '#fff';} // obj
  • el.onclick = function() {doSomething();} // In the doSomething - Window
  • el.addEventListener('click',foo,false) // in the foo - obj
  • el.attachEvent('onclick, function () { // this }') // window, all the compliance to IE :)
  • <button onclick="this.style.color = '#fff';"> // obj
  • <button onclick="foo"> // In the foo - window, but you can <button onclick="foo(this)">
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.