Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

concat js mdn

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"]
Source by developer.mozilla.org #
 
PREVIOUS NEXT
Tagged: #concat #js #mdn
ADD COMMENT
Topic
Name
1+5 =