I'm coming from a Java background, with its class-based inheritance model, trying to get my head around Javascript's prototype-based inheritance model. Part of what is throwing me off, I think is that I have Java's meaning of "this" solidly in mind - and Javascript's "this" is a very different beast. I understand that Javascript's "this" always refers to the function's caller, not the scope in which the function was defined - I mean, I have read that and understand superficially what it means. But I would like to have the understanding more deeply, and I think having another name for it would help. How do you think about JS "this"? Do you make a mental replacement every time you run across it? If so - what word or phrase do you use?
|
|
It's really referring to an execution context for the current scope, and while that context can be an instance of a class, it certainly doesn't have to be — it can be any object at all, and it can be modified at run-time. Proof that there is no guarantee whatsoever that a "method" in Javascript is operating on an instance of the "class" in which it is defined:
It's important to note there that the value of the |
||||
|
|
One possible alternative name would be This example is from quirksmode: In JavaScript In the following code,
and
,
|
|||||
|
|
I think JavaScript's |
|||||||||||||
|
|
The shifting meaning that @Andrew Hare refers to is probably closer to the source of your confusion; because of JS's prototype inheritance mechanism, the Assuming execution in the browser:
|
||||
|
|
|
How about 'JavaScript this'? It'd keep you tied directly to what you're doing and also provide the mental reminder that the concept of 'this' that you're currently working with is the JavaScript concept. Eventually, I'd expect you'd stop calling it 'JavaScript this' and just call it 'this', being fully aware of what that means in the context you're working in. Which I'd expect is probably where you want to get to, anyway. |
|||
|
|
I absorb novel syntax with little easy-to-type mental models such as:
This badly-translates into sloppy, imaginary C++ as:
|
|||
|
|
|
I think However, the meaning of
|
|||
|
|
|
Selfreferential logic (self or this) avoids paradoxes to advantage working on other than the self (this). Shall self (this) keep everything and all to one , it may as well stay static with no instance and with class method (static) instead. To avoid paradoxes, avoid selfreferences and logic keeps all truths provable and viceversa, all provables true. |
|||
|
|
