Cloning an array in JavaScript implementation code _javascript tips

Source: Internet
Author: User

08 A company JS interview question, the position is JavaScript engineer (go to Google)

The interviewer asked me how to clone an array, when I thought of the next JS object without the Clone method, Java object has.

So how do we get a new array?

I replied: Use a loop to push the source array elements into the new array in turn. This is the easiest way, but it's obviously not the answer the interviewer wants.

Finally told me: the use of array slice method. Examples are as follows:

Copy Code code as follows:

var ary = [1,2,3];//source array
var ary2 = ary.slice (0);//Clone a new array
Console.log (Ary2);

/* Change Ary2, does not affect the ARY, the description is indeed two arrays rather than references
* If it is two references, change any of them to the same array operation
*/
Ary2[0] = 10;
Console.log (Ary2);
Console.log (ary);

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.