Summarize
Global EnvironmentRegardless of strict mode, this refers to the window object. console.log(this === window) // true // Strict mode 'use strict' console.log(this === window) // true Ordinary functions
ConstructorWhen a function is used as a constructor, this points to the constructed instance. function Test() { this.number = 1 } let test1 = new Test() console.log(test1.number) // 1 Arrow FunctionsWhen the function is an arrow function, this refers to the this value in the previous scope when the function is defined. let test = () => { return this === window } console.log(test()) // true let obj = { number: 1 } function foo() { return () => { return this.number } } let test = foo.call(obj) console.log(test()) // 1 Object methodsWhen a function is used as a method of an object, this refers to the object. let obj = { number: 1, getNumber() { return this.number } } console.log(obj.getNumber()) // 1 call(), apply(), bind()
let obj = { number: 1 } function test(num) { return this.number + num } console.log(test.call(obj, 1)) // 2 console.log(test.apply(obj, [2])) // 3 let foo = test.bind(obj, 3) console.log(foo()) // 4 This is the end of this article about the detailed case of this pointing problem in JavaScript. For more related content about this pointing problem in JavaScript, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: How to install elasticsearch and kibana in docker
>>: The difference between distinct and group by in MySQL
WeChat applet uniapp realizes the left swipe to d...
This article describes the MySQL slow query opera...
Scenario 1: Html: <div class="outer"...
The following are all performed on my virtual mac...
Table of contents 01 Introduction to InnoDB Repli...
Preface What is state We all say that React is a ...
Table of contents 1. What is Promise? 2. Why is t...
Table of contents 1. Example scenario 1.1. Set th...
<br />I am very happy to participate in this...
Many people have read this book: "Grow as a ...
This article shares the specific code of JavaScri...
1. Install MySQL database on mac 1. Download MySQ...
This article shares the specific code of the jQue...
The content involved in Web front-end development...
Display Definition ID When the auto-increment ID ...