A brief talk about cloning JavaScript

A brief talk about cloning JavaScript

1. Shallow cloning

Shallow 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 cloning

First determine what it is, a primitive value, an array, or an object, and handle them separately

  • Iterating over objects
  • The original value is copy directly
  • Not a primitive value, judge whether it is an array or an object
  • Is an array to create an empty array
  • It is an object that creates an empty object
  • After it is established, iterate over what is in the original object or array
  • recursion
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:
  • Detailed explanation of the deep and shallow cloning principles of JavaScript arrays and non-array objects
  • JavaScript Shallow Cloning and Deep Cloning Examples Detailed
  • JavaScript shallow cloning, deep cloning comparison and example analysis
  • Example of deep cloning method for JS objects
  • Analysis of JS object deep cloning examples
  • JS extension class, cloned object and mixed class instance analysis
  • JS clone, attribute, array, object, function instance analysis
  • JavaScript deep clone object detailed explanation and example
  • Simple implementation method of javascript array cloning
  • Introduction to common methods of cloning objects and arrays in js

<<:  Example tutorial on using the sum function in MySQL

>>:  Docker network mode and configuration method

Recommend

About the pitfall record of Vue3 transition animation

Table of contents background Problem location Fur...

How to run a project with docker

1. Enter the directory where your project war is ...

Installation steps of mysql under linux

1. Download the mysql tar file: https://dev.mysql...

Do you know all 24 methods of JavaScript loop traversal?

Table of contents Preface 1. Array traversal meth...

MySQL 5.6.28 installation and configuration tutorial under Linux (Ubuntu)

mysql5.6.28 installation and configuration method...

The use of MySQL triggers and what to pay attention to

Table of contents About Triggers Use of triggers ...

How to write high-quality JavaScript code

Table of contents 1. Easy to read code 1. Unified...

CSS clear float clear:both example code

Today I will talk to you about clearing floats. B...

Mysql some complex sql statements (query and delete duplicate rows)

1. Find duplicate rows SELECT * FROM blog_user_re...

A brief discussion of the interesting box model of CSS3 box-sizing property

Everyone must know the composition of the box mod...

Use of Vue3 pages, menus, and routes

Table of contents 1. Click on the menu to jump 1....

MySQL 5.7.19 installation and configuration method graphic tutorial (win10)

Detailed tutorial on downloading and installing M...

Detailed explanation of querying JSON format fields in MySQL

During the work development process, a requiremen...