Differences between this keyword in NodeJS and browsers

Differences between this keyword in NodeJS and browsers

Preface

Anyone who has learned JavaScript must be aware of the issue of where this points to in different environments. Then look at the following code

var type = 1
function toWhere(){
	this.type = 2;
}
toWhere();
console.log(type)

You will definitely think:

A global variable type is declared here. When type=1 is executed, the value is assigned to 1. After that, the toWhere function is called. When we see this in the function, we determine where this points to. It is very clear here that this points to window. After this.type=2 is executed, the global variable type is assigned a value of 2.

Finally, the global variable type is printed and the result is obviously 2.

Open the browser to verify, and there is a 2 clearly there.

So is this the end?

If you have learned node, and now re-execute the above code with nodejs, you will find the difference.

Now you find that the 1 is wrong. Isn’t it equal to 2?

Related debugging

From the above examples, we can see that the same js code has different results when it is run in the browser and in nodejs.

This is actually because of the problem of this pointing, but this pointing is different from what we usually know. This pointing problem is caused by the working principle of node

var type = 1
function toWhere() {
 this.type = 2
 console.log("this points to in the function", this)
}
toWhere()
console.log(type)
console.log("globally this", this)

1. Print this in the browser

This in the function points to window, and the global this also points to window

2. Print this in nodeJs

Found it. This in the function points to Object [global].

When we assign a value to a function's this, it is actually attached to the global object. So it will not change the value of this in the global

Node principle analysis

So let's see why this is happening.

First we need to understand how nodeJs works

Script files that are executed directly by the browser in the global scope

In Node, Node hides the code in an anonymous function that is called immediately. You can use global to access the global scope.

In the previous explanation, we found that a this printed externally points to an empty object {}. In fact, any file running in node is actually wrapped in a {}, so the script files are executed in their own closures, similar to the following

{
	(function(){
		//Script file })()
}

In the previous example, outside the function this refers to an empty object {}, and inside the function this has no specified execution context, so it refers to the global object - (which has access to the global scope of the anonymous function execution context)

Summarize

This is the end of this article about the differences between the this keyword in NodeJS and the browser. For more information about the this keyword in NodeJS and the browser, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to use nodejs to implement command line games
  • Nodejs realizes the sharing of small games with multiple people moving the mouse online at the same time
  • Implementing a multiplayer game server engine using Node.js
  • Node.js real-time multiplayer game framework
  • Is node.js suitable for game backend development?
  • A complete example of implementing a timed crawler with Nodejs
  • The core process of nodejs processing tcp connection
  • How to write a Node.JS version of a game

<<:  MySQL database must know sql statements (enhanced version)

>>:  How to deploy HTTPS for free on Tencent Cloud

Recommend

js to achieve simple accordion effect

This article shares the specific code of js to ac...

JavaScript data transmission between different pages (URL parameter acquisition)

On web pages, we often encounter this situation: ...

Flex layout makes adaptive pages (syntax and examples)

Introduction to Flex Layout Flex in English means...

Configuring MySQL and Squel Pro on Mac

In response to the popularity of nodejs, we have ...

Detailed explanation of Vue save automatic formatting line break

I searched for many ways to change it online but ...

Using js to achieve waterfall effect

This article example shares the specific code of ...

Detailed tutorial on configuring nginx for https encrypted access

environment: 1 CentOS Linux release 7.5.1804 (Cor...

Vue implements custom "modal pop-up window" component example code

Table of contents Preface Rendering Example Code ...

MySQL 5.7.18 installation and configuration method graphic tutorial (CentOS7)

How to install MySQL 5.7.18 on Linux 1. Download ...

UDP DUP timeout UPD port status detection code example

I have written an example before, a simple UDP se...

Installation and deployment of MySQL Router

Table of contents 01 Introduction to MySQL Router...