Here this keyword which is in arrow function points to obj's variable environment
var greeting = 'hi';
const obj = {
greeting: 'hey',
fo() {
const greeting = 'hola';
const arrowFo = () => {
console.log(this.greeting);
};
arrowFo();
},
};
obj.fo(); //logs: hey
Here this keyword which is in arrow function points to obj's variable environment
var greeting = 'hi';
const obj = {
greeting: 'hey',
fo() {
const greeting = 'hola';
const arrowFo = () => {
console.log(this.greeting);
};
arrowFo();
},
};
obj.fo(); //logs: hey
but in this new example it points to global object. I did not figure out what has changed? there is just added a new regular function fo2. Can anyone explain to me what is happening there? (I was anticipating that it would pointed to fo2's local environment and would printed "hello") Thanks in advance
var greeting = 'hi';
const obj = {
greeting: 'hey',
fo() {
const greeting = 'hola';
const fo2 = function () {
const greeting = 'hello';
const arrowFo = () => {
console.log(this.greeting);
};
arrowFo();
};
fo2();
},
};
obj.fo(); //logs: hi
Share
Improve this question
asked Mar 7, 2021 at 15:14
LeonardoLeonardo
3032 gold badges3 silver badges8 bronze badges
5
- That's one of the differences between using an arrow function vs a regular function – Major_Ash Commented Mar 7, 2021 at 15:17
-
4
The
this
keyword never points to an "environment", it points to a value (typically an object). It refers to thethis
value info2
, which is the global object since you calledfo2()
(not as a method). – Bergi Commented Mar 7, 2021 at 15:17 -
4
this
insidefoo2
refers to thewindow
object and not theobj
because of the way you have calledfo2
. Replacefo2()
withfo2.call(this);
and you will see the expected output. – Yousaf Commented Mar 7, 2021 at 15:17 -
@Yousaf That would still not print
hello
buthey
which is present onobj
since nowthis
will beobj
. I think the asker is confusingconst/let/var
declared variables being accessed viathis
. – Lakshya Thakur Commented Mar 7, 2021 at 15:24 - @LakshyaThakur I though OP expected "hey" as the output - thank you for pointing that out. – Yousaf Commented Mar 7, 2021 at 15:28
2 Answers
Reset to default 8Arrow functions have no this value in their scope, so you can access this
value of the object. But Normal functions have this value in their scope, in this example this
value of the normal function is globalThis or window. and it allows to you access the global scope. if you call fo2
with this
value of object instead of globalThis you get '"hey"'
var greeting = 'hi';
const obj = {
greeting: 'hey',
fo() {
const greeting = 'hola';
const fo2 = function () {
const greeting = 'hello';
const arrowFo = () => {
console.log(this.greeting);
};
arrowFo();
};
fo2.call(this) // Use this instead of fo2()
},
};
In JavaScript the this object is really based on how you make your function calls. the fo2() function is not binded in any object for this purpos it get the this of global context
you have to declare your function with the this like this :
var greeting = 'hi';
const obj = {
greeting: 'hey',
fo() {
const greeting = 'hola';
this.fo2 = function () {
const greeting = 'hello';
const arrowFo = () => {
console.log(this.greeting);
};
arrowFo();
};
this.fo2();
},
};
obj.fo(); //logs: hi
or use arrow function like this :
var greeting = 'hi';
const obj = {
greeting: 'hey',
fo() {
const greeting = 'hola';
fo2 = () => {
const greeting = 'hello';
const arrowFo = () => {
console.log(this.greeting);
};
arrowFo();
};
fo2();
},
};
obj.fo();