Detailed explanation of the principle and example of the new operator in JavaScript

Detailed explanation of the principle and example of the new operator in JavaScript

Uses of new

The function of new is to create an instance object through a constructor. The relationship between the instance, the prototype and the constructor is shown in the following figure:

Let’s summarize first

  1. Create an empty object
  2. The internal property __proto__ of the empty object is assigned to the prototype property of the constructor function.
  3. Set the constructor's this to point to an empty object
  4. Execute the code inside the constructor
  5. Return the new object

Detailed description

When executing the new operation, the following steps are performed in sequence:

1. Create an empty object

  • The empty object is an instance of Object, that is, {}.
let obj = {}

2. The internal property __proto__ of the empty object is assigned to the prototype property of the constructor

  • This operation is to link the empty object to the correct prototype
function Foo(num) {
  this.number = num
}

obj.__proto__ = Foo.prototype

3. Point the constructor's this to an empty object

  • That is, this inside the constructor is assigned to an empty object so that the constructor can be executed correctly later.
Foo.call(obj, 1)

4. Execute the code inside the constructor

  • That is, add properties and methods to the empty object.

5. Return the new object

  • If a reference type value is returned through the return statement inside the constructor, the new operation will eventually return this reference type value; otherwise, it will return the newly created object.
  • Reference type values: all values ​​except primitive type values ​​(numbers, strings, Boolean values, null, undefined, and Symbol values).

Emulating the new operator

The following myNew function simulates the behavior of the new operator:

function myNew(func, ...args) {
  let obj = {}
  obj.__proto__ = func.prototype
  let res = func.apply(obj, args)
  return res instanceof Object ? res : obj
}

function Foo(num) {
  this.number = num
}

let foo1 = myNew(Foo, 1)
console.log(foo1 instanceof Foo) // true
console.log(foo1.number) // 1

let foo2 = new Foo(2)
console.log(foo2 instanceof Foo) // true
console.log(foo2.number) // 2

The instanceof operator is used above to determine whether the return value of the constructor is an instance of Object, that is, whether it is a reference type value; this is because all reference type values ​​are instances of Object, and Object is the base type of all reference type values.

Well, this is the end of this article about the principle of the new operator in JavaScript. For more relevant content about the principle of JS new operator, 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:
  • Let's talk in depth about the principle and implementation of new in JS
  • Detailed description of the function of new in JS
  • Research on two ways to implement new in JavaScript
  • How to implement JavaScript's new operator yourself
  • Detailed explanation of the role of the new operator in Js
  • Summary of common methods of c# Newtonsoft.Json
  • C# Newtonsoft.Json parses multiple nested json for deserialization example
  • c# add Newtonsoft.Json package operation
  • The new command in JavaScript
  • Handwriting implementation of new in JS

<<:  Create a virtual environment using venv in python3 in Ubuntu

>>:  Steps to install superset under win10 system

Recommend

Web front-end development course What are the web front-end development tools

With the development of Internet technology, user...

33 ice and snow fonts recommended for download (personal and commercial)

01 Winter Flakes (Individual only) 02 Snowtop Cap...

Two ways to clear float in HTML

1. Clear floating method 1 Set the height of the ...

How to use cursor triggers in MySQL

cursor The set of rows returned by the select que...

Detailed installation tutorial of Mysql5.7.19 under Centos7

1. Download Download mysql-5.7.19-linux-glibc2.12...

Install Apple Mac OS X in VMWare12 Graphic Tutorial

1. Introduction: Because my friend wanted to lear...

Zabbix configures DingTalk's alarm function with pictures

Implementation ideas: First of all, the alarm inf...

Detailed tutorial on using the Prettier Code plugin in vscode

Why use prettier? In large companies, front-end d...

Newbies quickly learn the steps to create website icons

<br />Original URL: http://www.lxdong.com/po...

MySQL 8.0.11 installation and configuration method graphic tutorial (win10)

This article records the installation and configu...

How to configure /var/log/messages in Ubuntu system log

1. Problem Description Today I need to check the ...

mysql-8.0.17-winx64 deployment method

1. Download mysql-8.0.17-winx64 from the official...

A brief discussion on Flex layout and scaling calculation

1. Introduction to Flex Layout Flex is the abbrev...