var b1 = ['a', 'b']; var b2 = ['c']; var b3 = ['d', 'e']; // ES5合并数组 b1.concat(b2, b3); console.log(b1);