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
Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.
JetThoughts Dev -
Roddy Ezell -
Ashitosh Shinde -
Yaryna Kobryn -
Top comments (1)
Why not just:
?