let arr1 = ['a','b','c']; let arr2 = ['d','e','f']; const combine = [...arr1,...arr2]; console.log(combine); //['a','b','c','d','e','f'];