与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]
我该怎么做?
答案 0 :(得分:0)
使用Array.prototype.concat
方法:
var result = hora.concat(self.aEstados.estados);
答案 1 :(得分:0)
使用Array.prototype.concat
(https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/concat)
var combined = hora.concat( self.aEstados.estados );
console.info( combined );