๐๐ก๐๐ญ ๐ฐ๐ข๐ฅ๐ฅ ๐๐ ๐ฅ๐จ๐ ๐ ๐๐ ๐ญ๐จ ๐ญ๐ก๐ ๐๐จ๐ง๐ฌ๐จ๐ฅ๐?
๐๐ก๐๐ญ ๐ฐ๐ข๐ฅ๐ฅ ๐๐ ๐ฅ๐จ๐ ๐ ๐๐ ๐ญ๐จ ๐ญ๐ก๐ ๐๐จ๐ง๐ฌ๐จ๐ฅ๐?
โ
โ
First, we have an object named โincomeโ with three properties:
โ
1. โ๐ฌ๐ค๐ข๐ฅ๐ฅ๐ฌโ, which is set to 108.
2. โ๐ฆ๐จ๐ง๐ญ๐ก๐ฅ๐ฒโ, which is a method that calculates the monthly income based on the โ๐ฌ๐ค๐ข๐ฅ๐ฅ๐ฌโ value.
3. โ๐ฒ๐๐๐ซ๐ฅ๐ฒโ, which is an arrow function meant to calculate the yearly income.
โ
๐๐ฑ๐ฉ๐ฅ๐๐ง๐๐ญ๐ข๐จ๐ง ๐จ๐ โ๐ฆ๐จ๐ง๐ญ๐ก๐ฅ๐ฒ()โ ๐ฆ๐๐ญ๐ก๐จ๐:
โ
1. โ๐ฆ๐จ๐ง๐ญ๐ก๐ฅ๐ฒ()โ is a regular function. When you call โ๐ข๐ง๐๐จ๐ฆ๐.๐ฆ๐จ๐ง๐ญ๐ก๐ฅ๐ฒ()โ, this refers to the โ๐ข๐ง๐๐จ๐ฆ๐โ object.
2. โ๐ญ๐ก๐ข๐ฌ.๐ฌ๐ค๐ข๐ฅ๐ฅ๐ฌโ inside the โ๐ฆ๐จ๐ง๐ญ๐ก๐ฅ๐ฒ()โ method correctly refers to โ๐ข๐ง๐๐จ๐ฆ๐.๐ฌ๐ค๐ข๐ฅ๐ฅ๐ฌโ, which is 108.
3. So, โ๐ญ๐ก๐ข๐ฌ.๐ฌ๐ค๐ข๐ฅ๐ฅ๐ฌ * ๐๐๐โ becomes โ๐๐๐ * ๐๐๐โ, which equals 11664.
4. Therefore, โ๐ข๐ง๐๐จ๐ฆ๐.๐ฆ๐จ๐ง๐ญ๐ก๐ฅ๐ฒ()โ returns 11664.
โ
๐๐ฑ๐ฉ๐ฅ๐๐ง๐๐ญ๐ข๐จ๐ง ๐จ๐ โ๐ฒ๐๐๐ซ๐ฅ๐ฒโ ๐๐ซ๐ซ๐จ๐ฐ ๐๐ฎ๐ง๐๐ญ๐ข๐จ๐ง:
โ
1. โ๐ฒ๐๐๐ซ๐ฅ๐ฒโ is defined as an arrow function.
2. Arrow functions do not have their own โ๐ญ๐ก๐ข๐ฌโ context; they inherit โ๐ญ๐ก๐ข๐ฌโ from the surrounding (lexical) context at the time they are defined.
3. In this case, โ๐ญ๐ก๐ข๐ฌโ in โyearlyโ refers to the global object (โ๐ฐ๐ข๐ง๐๐จ๐ฐโ in browsers, โ๐ ๐ฅ๐จ๐๐๐ฅโ in Node.js), not the โ๐ข๐ง๐๐จ๐ฆ๐โ object.
4. Since there is no โ๐ฌ๐ค๐ข๐ฅ๐ฅ๐ฌโ property on the global object, โ๐ญ๐ก๐ข๐ฌ.๐ฌ๐ค๐ข๐ฅ๐ฅ๐ฌโ is โ๐ฎ๐ง๐๐๐๐ข๐ง๐๐โ.
5. As a result, โ๐๐๐ * ๐ญ๐ก๐ข๐ฌ.๐ฌ๐ค๐ข๐ฅ๐ฅ๐ฌโ becomes โ๐๐๐ * ๐ฎ๐ง๐๐๐๐ข๐ง๐๐โ, which is โ๐๐๐โ (Not a Number).
6. Therefore, โ๐ข๐ง๐๐จ๐ฆ๐.๐ฒ๐๐๐ซ๐ฅ๐ฒ()โ returns โ๐๐๐โ.
โ
๐๐จ ๐ฌ๐ฎ๐ฆ๐ฆ๐๐ซ๐ข๐ณ๐:
โ
1. โ๐ข๐ง๐๐จ๐ฆ๐.๐ฆ๐จ๐ง๐ญ๐ก๐ฅ๐ฒ()โ works as expected and returns 11664 because โ๐ญ๐ก๐ข๐ฌโ correctly refers to the โ๐ข๐ง๐๐จ๐ฆ๐โ object.
2. โ๐ข๐ง๐๐จ๐ฆ๐.๐ฒ๐๐๐ซ๐ฅ๐ฒ()โ returns โ๐๐๐โ because โ๐ญ๐ก๐ข๐ฌโ inside the arrow function does not refer to the โ๐ข๐ง๐๐จ๐ฆ๐โ object, leading to โ๐ญ๐ก๐ข๐ฌ.๐ฌ๐ค๐ข๐ฅ๐ฅ๐ฌโ being โ๐ฎ๐ง๐๐๐๐ข๐ง๐๐โ.
โ
โ
โ
๐
๐จ๐ฅ๐ฅ๐จ๐ฐ ๐ญ๐ก๐ข๐ฌ ๐ฉ๐๐ ๐ ๐๐จ๐ซ ๐ฆ๐จ๐ซ๐ ๐๐จ๐ง๐ญ๐๐ง๐ญ ๐ฅ๐ข๐ค๐ ๐ญ๐ก๐ข๐ฌ.
No comments:
Post a Comment