java-script:function-context
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
java-script:function-context [2023/08/09 13:40] – odefta | java-script:function-context [2023/08/09 14:52] (current) – odefta | ||
---|---|---|---|
Line 165: | Line 165: | ||
This example illustrates how the **bind** method can be used to create reusable functions with different contexts for **this**, allowing you to write more modular and maintainable code. \\ | This example illustrates how the **bind** method can be used to create reusable functions with different contexts for **this**, allowing you to write more modular and maintainable code. \\ | ||
Similar principles apply when using **call** and **apply** to control the context of **this** in other situations. | Similar principles apply when using **call** and **apply** to control the context of **this** in other situations. | ||
+ | </ | ||
+ | ===== Arrow Functions Context ===== | ||
+ | |||
+ | <note important> | ||
+ | Unlike normal (or named functions), the arrow functions does not have their own context, they' | ||
+ | |||
+ | In regular functions, the value of this is determined by how the function is called, while **in arrow functions**, | ||
</ | </ | ||
+ | |||
+ | Example: | ||
+ | <code javascript ArrowFunctionContext.html> | ||
+ | < | ||
+ | <html lang=" | ||
+ | < | ||
+ | <meta charset=" | ||
+ | < | ||
+ | </ | ||
+ | < | ||
+ | <div id=" | ||
+ | <div id=" | ||
+ | < | ||
+ | let person = { | ||
+ | name: ' | ||
+ | sayHello: () => { | ||
+ | return `Hello - ${this.name}`; | ||
+ | } | ||
+ | }; | ||
+ | |||
+ | document.getElementById(' | ||
+ | |||
+ | person = { | ||
+ | name: ' | ||
+ | sayHello: function() { | ||
+ | return `Hello - ${this.name}`; | ||
+ | } | ||
+ | }; | ||
+ | |||
+ | document.getElementById(' | ||
+ | |||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | In the first part, we have defined sayHello as an arrow function. **Arrow functions don't have their own this**, so the this keyword inside the arrow function refers to the lexical context, which in the case of a script running in a browser would be the global window object. Since window.name is undefined, the first div (text1) will have the content " | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | In the second example, we have defined sayHello as a regular function. **Regular functions have their own this** context, which refers to the object they are called on. So, when we call person.sayHello(), | ||
+ | </ | ||
+ | |||
+ | ==== How to access the context of a parent object inside a nested (child) named function ==== | ||
+ | |||
+ | Here we'll need to assign the context of the parent object to a variable that the nested function can access. \\ This is commonly done by **assigning this to a variable, often named self or that**, in the parent object' | ||
+ | |||
+ | Example: | ||
+ | <code javascript> | ||
+ | const parentObject = { | ||
+ | parentValue: | ||
+ | childFunction: | ||
+ | const self = this; // Storing parent' | ||
+ | |||
+ | function namedFunction() { | ||
+ | // Accessing parent' | ||
+ | console.log(self.parentValue); | ||
+ | } | ||
+ | |||
+ | namedFunction(); | ||
+ | } | ||
+ | }; | ||
+ | |||
+ | parentObject.childFunction(); | ||
+ | </ | ||
+ | |||
+ | ==== How to access the context of a parent object inside a nested (child) arrow function ==== | ||
+ | |||
+ | Using an **arrow function** can simplify the code because arrow functions **don' | ||
+ | Same example with arrow function: | ||
+ | |||
+ | <code javascript> | ||
+ | const parentObject = { | ||
+ | parentValue: | ||
+ | childFunction: | ||
+ | const arrowFunction = () => { | ||
+ | // Accessing parent' | ||
+ | console.log(this.parentValue); | ||
+ | }; | ||
+ | |||
+ | arrowFunction(); | ||
+ | } | ||
+ | }; | ||
+ | |||
+ | parentObject.childFunction(); | ||
+ | </ | ||
+ | |||
+ | By using an arrow function for the inner function, we automatically capture the value of this from the enclosing childFunction method. This allows the inner function to access the properties and methods of the parentObject without needing to assign this to a separate variable. | ||
+ | \\ It's a cleaner and more concise way to write code that depends on maintaining the context of this across different levels of nested functions. | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ |
java-script/function-context.1691577613.txt.gz · Last modified: 2023/08/09 13:40 by odefta