Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

js combine two arrays

const letters = ['a', 'b', 'c'];
const numbers = [1, 2, 3];

letters.concat(numbers);
// result in ['a', 'b', 'c', 1, 2, 3]
Source by developer.mozilla.org #
 
PREVIOUS NEXT
Tagged: #js #combine #arrays
ADD COMMENT
Topic
Name
8+2 =