definitionThe new operator creates an instance of a user-defined object type or an instance of a built-in object with a constructor. Use the new [constructor] method to create an object instance, but differences in constructors will result in different instances being created. Constructor bodies are differentA constructor is also a function. The only difference is the calling method. Any function called with the new operator is a constructor, and a function not called with the new operator is an ordinary function. Therefore, the constructor can also have a return value, but this will result in different results for new. No return valuefunction Person(name) { this.name = name; } let obj = new Person("Jalenl"); console.log(obj); Obviously, what is printed is {name:'Jalenl'} Return Objectfunction Person(age) { this.age = age; return { name: "Jalenl" }; } let obj = new Person(18); console.log(obj); What is printed is {name:'Jalenl'}, which means that all the definitions before return are overwritten. What is returned here is an object, what if it is a basic type? Returns non-objectfunction Person(age) { this.age = age; return 1; } let obj = new Person(18); console.log(obj); Returns {age:21}, which means that return is invalid, and the result is the same as if there is no return. What if there is no this bound internal attribute and the basic data type is returned? No property binding + returns non-objectfunction Person(){ return 1 } new Person() The returned value is an empty object {}, as expected. In summary, the initial result can only be changed when the constructor return returns an object type. Constructor types are different The constructor is a normal functionThe ECMA-262 3rd. Edition Specification describes the process of creating an object instance:
To sum up:
The fifth step has already explained why different constructors lead to different new results. The following is an explanation from MDN:
Constructor is an arrow functionWhen a normal function is created, the engine will create a prototype property (pointing to the prototype object) for this function according to specific rules. By default, all prototype objects automatically gain a property called constructor that points back to the constructor associated with them. function Person(){ this.age = 18; } Person.prototype /** { constructor: ƒ Foo() __proto__: Object } **/ When creating an arrow function, the engine will not create a prototype property for it. The arrow function has no constructor for new to call, so using new to call the arrow function will result in an error! const Person = ()=>{} new Person() // TypeError: Foo is not a constructor Handwritten newIn summary, after being familiar with the working principle of new, we can implement a low-profile version of new by ourselves. The key to implementation is:
function _new(constructor, ...args) { // Constructor type legal judgment if(typeof constructor !== 'function') { throw new Error('constructor must be a function'); } //Create a new empty object instance let obj = new Object(); // Bind the prototype of the constructor to the newly created object instance obj.__proto__ = Object.create(constructor.prototype); // Call the constructor and determine the return value let res = constructor.apply(obj, args); let isObject = typeof res === 'object' && res !== null; let isFunction = typeof res === 'function'; // If there is a return value and it is an object type, then use it as the return value, otherwise return the previously created object return isObject || isFunction ? res : obj; }; This low-profile new implementation can be used to create instances of custom classes, but it does not support built-in objects. After all, new is an operator and the underlying implementation is more complicated. SummarizeThis is the end of this article about the principle and implementation of new in JS. For more relevant content about the principle and implementation of new in JS, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
>>: Design of pop-up windows and floating layers in web design
Table of contents Preface Promise chaining MDN Er...
Operating system: Window10 MySQL version: 8.0.13-...
Here are the detailed steps: 1. Check the disk sp...
html <div class="totop" v-show="...
1. The Importance of Indexes Indexes are used to ...
Including the use of check boxes and radio buttons...
Library Operations Query 1.SHOW DATABASE; ----Que...
Get daily statistics When doing a project, you ne...
1. Dynamically create objects There are two ways ...
1. First introduce several commonly used MySQL fu...
MySQL 5.7.21 winx64 free installation version con...
Preface In the Linux kernel, netfilter is a subsy...
Quoting Baidu's explanation of pseudo-static:...
Today I suddenly thought of reviewing the producti...
Table of contents 1. Background 2. Understanding ...