Concatenation of JS arrays

Source: Internet
Author: User

Concatenation of arrays

var a = [1,2,3,4,5,6];

var b=["foo", "Bar", "fun"];

The end result is:

[

1,2,3,4,5,6, "foo", "Bar", "Fun"

]

In general, the first thing we think about is concat.

C=a.concat (b);

C is a new array, at which time memory is used, c,a,b three arrays.

For large arrays?

The second way:

B "onto" a

for (Var i=0;i<b.length;i++) {

A.push (B.[i]);

}

B=null;

Obviously there is no new array creation, which is better for memory.

Notice the end of the b=null; After stitching is complete, array B is emptied

Do not like for loop can use the Third kind:

B "onto" a

A = B.reduce (function (Coll,item) {

Coll.push (item);

},A);

One more step to optimize

A.push.apply (A, b);

The writing of ES6

A.push (... b)

Concatenation of JS arrays

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.