concat list to array javascript code example
Example 1: javascript concat two arrays
//ES6
const array3 = [...array1, ...array2];
Example 2: js join two arrays
[1,2,3].concat([4,5,6])
// [1,2,3,4,5,6]
//ES6
const array3 = [...array1, ...array2];
[1,2,3].concat([4,5,6])
// [1,2,3,4,5,6]