1024programmer JavaScript How to merge two arrays in javascript

How to merge two arrays in javascript

The methods of merging two arrays are:

Method one: use concat

var a = [1,2,3];
 var b = [4,5,6];
var c = a.concat(b);

 //c=[1,2,3,4,5,6];

Method 2: Use loop

for(  let i in b){
 a.push(b[i])
 }

Method three: use apply

a.push.apply(a,b);

in When merging arrays, you can first judge the size of the arrays. It is obviously faster to merge the larger ones with the smaller ones.

If you do not want to change the arrays, it is recommended to use the concat method.

Recommended tutorial: js introductory tutorial

The above is the detailed content of how Javascript realizes the combination of two arrays. For more, please pay attention to other related articles on 1024programmer.com!

This article is from the internet and does not represent1024programmerPosition, please indicate the source when reprinting:https://www.1024programmer.com/how-to-merge-two-arrays-in-javascript/

author: admin

Previous article
Next article

Leave a Reply

Your email address will not be published. Required fields are marked *

Contact Us

Contact us

181-3619-1160

Online consultation: QQ交谈

E-mail: [email protected]

Working hours: Monday to Friday, 9:00-17:30, holidays off

Follow wechat
Scan wechat and follow us

Scan wechat and follow us

Follow Weibo
Back to top
首页
微信
电话
搜索