4 lines
79 B
JavaScript
4 lines
79 B
JavaScript
|
|
module.exports = function(array1, array2) {
|
||
|
|
return array1.concat(array2);
|
||
|
|
};
|