Method : Object.assign() The Object.assign method performs a shallow copy, not a deep copy. That is to say, if the value of a property of the source object is an object, then the target object copies a reference to this object. var object1 = { a: { b: 1 } }; ar object2 = Object.assign({}, object1); object1.ab = 2; console.log(object2.ab); 2. Purpose2.1 Adding properties to objects2.2 Adding methods to objects2.3 Cloning Objectsfunction copyFnc(origin) { return Object.assign({}, origin)} var sur = { a: 1, b: 2 }; console.log(copyFnc(sur)); The above code copies the original object to an empty object, and we get a clone of the original object. However, using this method to clone can only clone the values of the original object itself, not the values it inherits. If you want to keep the inheritance chain, you can use the following code. function clone(origin) { let originProto = Object.getPrototypeOf(origin); return Object.assign(Object.create(originProto), origin); } In JS, the subclass uses Object.getPrototypeOf to call the parent class method to obtain the prototype of the object. 2.4 Merging multiple objects//Merge multiple objects into one object const merge = (target, ...sources) => Object.assign(target, ...sources); //Merge multiple objects into a new object const merge = (...sources) => Object.assign({}, ...sources); 2.5 Specifying default values for propertiesconst DEFAULTS = { logLevel: 0, outputFormat: 'html'}; function processContent(options) {let options = Object.assign({}, DEFAULTS, options); } This is the end of this article about the usage and purpose of ES6 Object.assign(). For more information about the usage of ES6 Object.assign(), please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Example code for implementing anti-shake in Vue
>>: JS removeAttribute() method to delete an attribute of an element
In actual work, JavaScript regular expressions ar...
Whether it is the background image or the text siz...
First, the structure inside the nginx container: ...
Table of contents 1. Introduction 2. Several ways...
Preface For a long time, the application and lear...
This article mainly introduces how to implement a...
Preface The basic principle of MySQL master-slave...
Preface: I recently encountered the problem of in...
mysql efficient query MySQL sacrifices group by t...
Table of contents 1. Simple retrieval of data 2. ...
Effect demo.html <html> <head> <me...
After I installed MySQL, when I tried to save and...
1. Download MySQL Log in to the MySQL official we...
This article shares with you how to connect pytho...
background: Because the server deployed the flask...