如何在javascript中将两个数组合并为一个数组?

时间:2015-06-18 00:15:30

标签: javascript arrays

console.info(hora);我打印数组:

 ["NO HORA", 1, "NO HORA", 1]

console.info(self.aEstados.estados);我打印数组:

 ["SI CONTIENE", "NO CONTIENE", 2]

但我需要一起使用数组:

 ["NO HORA", 1, "NO HORA", 1, "SI CONTIENE", "NO CONTIENE", 2] 

我该怎么做?

2 个答案:

答案 0 :(得分:0)

使用Array.prototype.concat方法:

var result = hora.concat(self.aEstados.estados);

答案 1 :(得分:0)

使用Array.prototype.concathttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/concat

var combined = hora.concat( self.aEstados.estados );
console.info( combined );