The this keyword in JavaScript can be confusing because it behaves differently in regular functions and arrow functions. In this blog post, we will explain how this works in both types of functions, explore why these differences exist, and provide the basic knowledge you need to understand this in JavaScript.
Regular functions in JavaScript are defined using the function keyword. The value of this in these functions depends on how the function is called. Here are several examples:
function regularFunction() { console.log(this); } regularFunction(); // Logs the global object (window in browsers)
Explanation: In non-strict mode, when a function is called in the global context (not as a method of an object), this refers to the global object (window in browsers or global in Node.js).
'use strict'; function regularFunction() { console.log(this); } regularFunction(); // Logs undefined
When a function is called as a method of an object, this refers to that object.
const obj = { method: function() { console.log(this); } }; obj.method(); // Logs obj
Explanation: In this case, this points to obj because the function is called as a method of obj.
When a function is used as a constructor (called with the new keyword), this refers to the newly created instance.
function Person(name) { this.name = name; this.sayHello = function() { console.log(`Hello, my name is ${this.name}`); }; } const person1 = new Person('Alice'); person1.sayHello(); // Logs "Hello, my name is Alice" const person2 = new Person('Bob'); person2.sayHello(); // Logs "Hello, my name is Bob"
Explanation: When called with new, this inside the Person constructor function refers to the new instance being created. Each new instance (person1 and person2) gets its own name property and sayHello method.
You can explicitly bind this using call, apply, or bind.
function regularFunction() { console.log(this); } const obj = { value: 42 }; regularFunction.call(obj); // Logs obj regularFunction.apply(obj); // Logs obj const boundFunction = regularFunction.bind(obj); boundFunction(); // Logs obj
Explanation: call and apply immediately invoke the function with this set to obj, while bind creates a new function with this permanently bound to obj.
Arrow functions, introduced in ES6, do not have their own this context. Instead, they inherit this from the surrounding (lexical) scope. This makes arrow functions useful in certain situations.
Arrow functions inherit this from the scope in which they are defined.
const arrowFunction = () => { console.log(this); }; arrowFunction(); // Logs the global object (window in browsers)
Explanation: Arrow functions do not have their own this; they use this from the surrounding scope. Here, it refers to the global object because the function is defined in the global scope.
'use strict'; const arrowFunction = () => { console.log(this); }; arrowFunction(); // Logs undefined
Unlike regular functions, arrow functions do not get their own this when called as methods. They inherit this from the enclosing scope.
const obj = { method: () => { console.log(this); } }; obj.method(); // Logs the global object (window in browsers) or undefined in strict mode
Explanation: Arrow functions do not bind their own this but inherit it from the lexical scope. In this example, this refers to the global object or undefined in strict mode, not obj.
When an arrow function is defined inside another function, it inherits this from the outer function.
function outerFunction() { const arrowFunction = () => { console.log(this); }; arrowFunction(); } const obj = { value: 42, outerFunction: outerFunction }; obj.outerFunction(); // Logs obj, because `this` in arrowFunction is inherited from outerFunction
Explanation: In this case, this inside the arrow function refers to the same this as in outerFunction, which is obj.
Arrow functions in event handlers inherit this from the surrounding lexical scope, not from the element that triggers the event.
const button = document.querySelector('button'); button.addEventListener('click', () => { console.log(this); }); // Logs the global object (window in browsers) or undefined in strict mode
Explanation: The arrow function does not bind this to the button element; it inherits it from the surrounding scope, which is the global scope or undefined in strict mode.
The difference between regular functions and arrow functions lies in how they handle this:
To understand the behavior of this in JavaScript, you need to know the following concepts:
Understanding these distinctions will help you write more predictable and maintainable JavaScript code. Whether you're using regular functions or arrow functions, knowing how this works is crucial for effective JavaScript development.
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3