How to use Object.assign () in ES6
Editor to share with you how to use Object.assign () in ES6, I believe most people do not know much about it, so share this article for your reference, I hope you can learn a lot after reading this article, let's go to know it!
Object.assign ()
It is also an extension method of objects provided in ES6, which can be used for merging and copying objects. For example, object merging is also very tedious before, but is it very easy now, for example:
Let obj1 = {a: 1}; let obj2 = {b: 2}; let obj3 = Object.assign ({}, obj1, obj2); console.log (obj3); / / {a: 1, b: 2} above is all the content of the article "how to use Object.assign () in ES6". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!