Deep cloning of JavaScript

Source: Internet
Author: User

JS generally has two values of different data types:

Basic types (including Undefined,null,boolean,string,number), passed by value;

Reference types (including arrays, objects) are passed by address, and reference types are in-memory addresses when values are passed. For example:

If you modify the value of B, then the value of the A variable is also changed.

Cloning or copying is divided into 2 kinds: Shallow clone (copy), deep clone (copy);

Shallow clone: The base type is a value pass, and the object is still passed as a reference.

Deep cloning: All elements or attributes are completely cloned and completely independent of the original reference type, that is, the original object will not be modified when the object's properties are modified later.

My code is as follows: The main use of recursion.

function Cloneobject (obj) {
if (obj = = = null) {
return null;
}else if (obj instanceof Array) {
var arr = [];
for (var i = 0, Ilen = obj.length; i < Ilen; i+=1) {
Arr[i] = Obj[i];
}
return arr;
}else if (obj instanceof Date | | obj instanceof REGEXP | | obj instanceof Function) {
return obj;
}else if (obj instanceof Object) {
var o = {};
for (var i in obj) {
if (Obj.hasownproperty (i)) {
O[i] = Cloneobject (Obj[i]);
}
}
return o;
}else{
return obj;
}
}

Deep cloning of JavaScript

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.