In this video I go over the Concat method of arrays in javascript. The concat() method is used to merge two or more arrays. This method does not change the existing arrays, but instead returns a new array.
var newarray = array.concat([],[],[]....);