1. Shallow cloningShallow cloning cannot copy arrays and objects var obj = { name : "abs", age : '18', sex : 'male' } var obj1 = {} function clone(Origin,target) { target = target || {}; //Prevent users from entering target for(var k in Origin){ target[k] = Origin[k]; } } clone(obj,obj1); 2. Deep cloningFirst determine what it is, a primitive value, an array, or an object, and handle them separately
var obj = { name : 'lin', age : '18', sex : 'male', card : [1,2,3,4], wife : { name : 'bcsds', son : { name : 'aaa' }, age : '23' } } var obj1 = {} //The original value and the object array typeof return value are different function deepClone(origin,target) { target = target || {}; for(var k in origin) { if (origin.hasOwnProperty(k)) { if(typeof(origin[k]) == 'object') { if(Object.prototype.toString.call(origin[k]) == '[object Array]') { target[k] = []; }else { target[k] = {}; } deepClone(origin[k],target[k]); }else { target[k] = origin[k]; } } } } deepClone(obj,obj1); You may also be interested in:
|
<<: Example tutorial on using the sum function in MySQL
>>: Docker network mode and configuration method
Preface With the development of big front-end, UI...
Table of contents background Problem location Fur...
1. Enter the directory where your project war is ...
1. Download the mysql tar file: https://dev.mysql...
Table of contents Preface 1. Array traversal meth...
mysql5.6.28 installation and configuration method...
Table of contents About Triggers Use of triggers ...
Table of contents 1. Easy to read code 1. Unified...
Today I will talk to you about clearing floats. B...
1. Find duplicate rows SELECT * FROM blog_user_re...
Everyone must know the composition of the box mod...
Table of contents 1. Click on the menu to jump 1....
Preface When it comes to database transactions, a...
Detailed tutorial on downloading and installing M...
During the work development process, a requiremen...