I'm reading the documentation for the Underscore.js library from DocumentCloud. Many of the functions take an optional context argument which is not explained. My guess, as one familiar with Ruby is that this is similar to a Ruby binding. And that it has something to do with what this means. The extent of my JavaScript usage has been a few jQuery calls and some very boilerplate ajax.

My question: What does context mean and how should I use it? A good answer should probably contain some information about how JavaScript works as well.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Javascript functions take a hidden this parameter which indicates the context in which the function was called.

Ordinarily, this is the global object (usually window). However, when a function is called on an object, this will be the object that it was called on.

Underscore.js methods that take callback functions take an optional context parameter. If this parameter is specified, the callback will be called with that context, meaning that this inside the callback will be equal to the context.

link|improve this answer
That answers the first part of the question. Now, when should I use this ability, and and what should I set this to? Or, to put it another way, it this something that is so rarely used that I should just ignore it unless it turns up in someone else's code? – John F. Miller Mar 15 '11 at 1:15
@John: It's useful if you're passing a member function of your own object which needs to be called in context. – SLaks Mar 15 '11 at 1:21
feedback

Your Answer

 
or
required, but never shown

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