JavaScript basics of this pointing

JavaScript basics of this pointing

this in JavaScript is also a magical thing. In object-oriented programming (such as Java), it represents a current object reference. However, in JavaScript, this is not fixed, but changes with the running environment.

this

As usual, let’s look at the code first:

Method

function test(){
    console.log(this);
}

insert image description here

In the object

function test(){
    console.log(this);
}

insert image description here

In a method, this refers to the object to which the method belongs. Because the first one is a method on window, window is printed, and the eat method is a Person method, so the object Person is printed.

So it can be seen that using this alone in the console represents the global object.

insert image description here

Hidden this

In objects, you can declare them one by one in advance:

var Person1 = {
    name:"Zhang San",
    age:18
}
var Person2 = {
    name:"Li Si",
    age:19
}

This would be very troublesome to write, so you can learn from the concept of Java class, like this:

var Person = function (name, age) {
    this.name=name,
    this.age=age
       
}
var Person1=new Person("张三",18);
var Person2=new Person("Li Si",19);

insert image description here

In fact, there is a return this hidden in new. If you don’t use new, you will find that it does not return the newly created object.

insert image description here

Now let’s complete it:

var Person = function (name, age) {
    this.name=name,
    this.age=age
    return this;
}
var Person1=new Person("张三",18);
var Person2=new Person("Li Si",19);

insert image description here

In this way, you can even fake the effect of this:

var Person = function (name, age) {
    var that={};
    that.name=name,
    that.age=age
    return that;
}
var Person1=new Person("张三",18);
var Person2=new Person("Li Si",19);

insert image description here

Strict Mode

This has some magical behavior in strict mode and non-strict mode

function test() {
  return this;
}

# If "use strict" is added before js, it means strict mode "use strict";
function test() {
  return this;
}

insert image description here

This shows that in a function in non-strict mode, the owner of the function is bound to this by default. So the global value can be printed, but in strict mode the function is not bound to this, so this is undefined.

Summarize

This article ends here. I hope it can be helpful to you. I also hope that you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • Detailed explanation of this pointing in JS arrow function
  • Detailed explanation of this reference and custom properties in JavaScript
  • Detailed explanation of the this pointing problem in JavaScript
  • Detailed explanation of function classification and examples of this pointing in Javascript
  • Detailed explanation of this pointing problem in JavaScript function
  • Detailed explanation of the this pointing problem of JavaScript prototype objects

<<:  Solution to CSS flex-basis text overflow problem

>>:  Understand the rendering process of HTML pages in preparation for learning front-end performance optimization

Recommend

Book page turning effects made with CSS3

Result:Implementation code: html <!-- Please h...

Nginx content cache and common parameter configuration details

Use scenarios: The project's pages need to lo...

Implementation of CentOS8.0 network configuration

1. Differences in network configuration between C...

Use of Linux ln command

1. Command Introduction The ln command is used to...

v-for directive in vue completes list rendering

Table of contents 1. List traversal 2. The role o...

How to use Vue to develop public account web pages

Table of contents Project Background start Create...

How to use Docker to build OpenLDAP+phpLDAPadmin unified user authentication

1. Background Use LDAP to centrally manage operat...

Solution to MySQL IFNULL judgment problem

Problem: The null type data returned by mybatis d...

Solution to the IP address not being displayed under Linux

Table of contents Preface Solution: Step 1 Step 2...

MySQL 5.7.17 winx64 installation and configuration tutorial

Today I installed the MySQL database on my comput...

Problems with index and FROM_UNIXTIME in mysql

Zero, Background I received a lot of alerts this ...

How to run Linux commands in the background

Normally, when you run a command in the terminal,...

How to use fdisk to partition disk in Linux

Commonly used commands for Linux partitions: fdis...