Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Anonymous functions (lambdas) bind this to the lexical scope of where they're defined. You defined an anonymous function in a const object in the global closure, in a web browser, so this = window.
Fully qualified functions use call site invocation, so this is set to wherever that function is invoked from.
Objects don't create lexically assignable closures, that feature is exclusive to functions/function constructors.
ex:
function test(){
this.test = "waffles";
this.test2 = "waffles2"
this.a = { b: () => this };
}
If you create a new instance of test, and invoke a.b, you get the instance of test you created. You will also always receive that value because it is bound to the lexical scope.
Consider the following:
const obj = {
z(){ return this;}
}
const objZ = obj.z;
objZ(); // returns whatever the call site of the invocation is, contextually whatever closure houses objZ
obj.z() // also returns the call site of the invocation, which in this invocation will be obj -
That isn't bug, it's feature.
You wanna have `this` context down? Use old style function.
You wanna have upper `this` context, simply don't care about it or want elegant one-liner? Bash arrow function! -
@Ubbe actually, `this` is useful in class methods, so everybody's in clear that they are operating on instance of class rather than some private variable.
-
kamen69844y"It's not a bug, it's a feature", but for real. It's intentionally like this and both variants have their use.
-
C0D4681464y@ScriptCoded because `this` is complicated, especially if you don't know how variable scopes work.
-
@C0D4 that's one of cases when it's only so easy to complicate everything rather than to avoid 😂
-
@C0D4 it indeed is complicated. You have to know where `this` is convenient and where it is not. Novices are soooo confused coming from other languages (except from Java, bc it has `this` for the use case I pointed out earlier and it's fairly easy).
-
@C0D4 It's not only about `this` though. Also just bashing languages and other technologies all togheter
-
theuser48024y@vintprox I usually push for fat arrows if they will be a callback somewhere else. Other than that, regular functions.
-
penless304ythis was hard enough to get, yet they added arrow function to try make it simple and now it’s fragmented shit
-
theuser48024y@hashedram The average JS dev will say "you should use arrow functions because they look neater"
Sometimes I wish JS devs would put in some more effort into what is essentially their daily bread and butter. -
Yeah this is unintuitive in javascript. You have to read about its behaviour in depth to understand it. And frankly I don't think it's reasonable to expect people to read the friggin spec to use a language. I mean, I understand why it's like this. It's unfortunate but we have to live with it. Y'all javascript fanboys needa chill. No one's favourite language is perfect.
Thank god they added arrow functions though -
@M3m35terJ05h javascript "everyones favorite language."
You're the chandler of programming.
*slow clap*.
What the actual fuck is "this" Javascript
rant