The Clone pee in JS

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.
Clones or copies are divided into 2 types:
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.

The code is as follows:
function Cloneobject (obj) {
var o = Obj.constructor = = = Array? [] : {};
for (var i in obj) {
if (Obj.hasownproperty (i)) {
O[i] = typeof obj[i] = = = "Object"? Cloneobject (Obj[i]): Obj[i];
}
}
return o;
}


Another: If it is a simple array, the element does not have the value of the reference type, can be directly used Array.concat (), or Array.slice (0), to deep copy an array, so simple and efficient. The array's concat () and slice () would have generated a new array, and the original array would not have been affected. Note, however, that you want to make sure that the elements in the copied array do not have a value for the reference type.
This is another method of deep cloning, very simple, very practical:

The code is as follows:
var s = json.stringify (obj);
var o = json.parse (s);

The Clone pee in JS

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.