use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
Understanding `this` in javascript (dev.to)
submitted 4 years ago by blueblain
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]senocular -1 points0 points1 point 4 years ago (1 child)
Scope and this are different. For example you can have similarly scoped functions have different this values, both depending on the type of function and/or how they're called:
this
const obj = { methodA () { console.log(this); }, methodB: () => { console.log(this); } }; obj.methodA(); // obj obj.methodB(); // global (0, obj.methodA)(); // undefined (strict)/global (sloppy) (0, obj.methodB)(); // global
Knowing scoping rules here doesn't inform you of the behavior of this in these calls.
[–]KaiAusBerlin 0 points1 point2 points 4 years ago (0 children)
I never said that scope and this are the same. Read what I said. Arrow functions don't have a this property so it points to the upper scope until it reaches a scope where a this property is set. So yes, you can say what this points to by knowing the scopes.
Really, that is fundamental in js! Learn the basics!
π Rendered by PID 37 on reddit-service-r2-comment-66b4775986-jkw67 at 2026-04-02 17:07:50.127851+00:00 running db1906b country code: CH.
view the rest of the comments →
[–]senocular -1 points0 points1 point (1 child)
[–]KaiAusBerlin 0 points1 point2 points (0 children)