‘壹’ 微信小程序如何操作数组
var a = [["a","b","c"],["d","e"],["1","2","3"]]var b= ["4","5","6"]a.push(b)console.log(a)直接用push()就可以了