Creates a new array joining a wrapped array with any additional arrays and/or values.
npm install -S @jswork/next-concat
import '@jswork/next-concat';
const arr1 = [1,2];
const arr2 = ['a'];
const result = nx.concat(arr1,arr2);
//[1,2,'a'];
Code released under the MIT license.