let arr1 = [1,2,3]
let arr2 = [4,5,6]
arr1.push.apply(arr1,arr2)
console.log(arr1)
let arr1 = [1,2,3]
let arr2 = [4,5,6]
arr1.push.apply(arr1,arr2)
console.log(arr1)
For further actions, you may consider blocking this person and/or reporting abuse
Jait Ramadandi Jeke -
Abdur Rafay Saleem -
Arlan -
Justin3go -
Top comments (1)
Why not just:
?