References

Array.concat()

Leírás

Visszatér egy duplikált elemekkel rendelkező két (vagy több) tömbbel összefűzött tömböt.

Szintaxis

concat()
concat(value1)
concat(value1, value2)
concat(value1, value2, /* …, */ valueN)

Példa

const array1 = ['a', 'b', 'c']
const array2 = ['d', 'e', 'f']
const array3 = array1.concat(array2)
 
console.log(array3)
// Expected output: Array ["a", "b", "c", "d", "e", "f"]
in this article
back to top