js数组合并怎么写呢?

js数组合并怎么写呢?

使用concat很方便也很简单:let a = [1,2,3]let b = [4,5,6]let c = a.concat(b)console.log(c)浏览器输出如下浏览器输出结果var a=['北京',&
JavaScript110