2018-10-10 18:03:03 -04:00
---
id: 587d7da9367417b2b2512b66
2021-02-06 04:42:36 +00:00
title: Combine Two Arrays Using the concat Method
2018-10-10 18:03:03 -04:00
challengeType: 1
2020-08-05 16:38:04 +08:00
forumTopicId: 301229
2021-01-13 03:31:00 +01:00
dashedName: combine-two-arrays-using-the-concat-method
2018-10-10 18:03:03 -04:00
---
2020-12-16 00:37:30 -07:00
# --description--
2021-02-06 04:42:36 +00:00
< dfn > Concatenation</ dfn > means to join items end to end. JavaScript offers the `concat` method for both strings and arrays that work in the same way. For arrays, the method is called on one, then another array is provided as the argument to `concat` , which is added to the end of the first array. It returns a new array and does not mutate either of the original arrays. Here's an example:
2020-08-05 16:38:04 +08:00
```js
[1, 2, 3].concat([4, 5, 6]);
2021-02-06 04:42:36 +00:00
// Returns a new array [1, 2, 3, 4, 5, 6]
2020-08-05 16:38:04 +08:00
```
2020-12-16 00:37:30 -07:00
# --instructions--
2018-10-10 18:03:03 -04:00
2021-02-06 04:42:36 +00:00
Use the `concat` method in the `nonMutatingConcat` function to concatenate `attach` to the end of `original` . The function should return the concatenated array.
2018-10-10 18:03:03 -04:00
2020-12-16 00:37:30 -07:00
# --hints--
2018-10-10 18:03:03 -04:00
2021-02-06 04:42:36 +00:00
Your code should use the `concat` method.
2018-10-10 18:03:03 -04:00
2020-12-16 00:37:30 -07:00
```js
assert(code.match(/\.concat/g));
2018-10-10 18:03:03 -04:00
```
2021-02-06 04:42:36 +00:00
The `first` array should not change.
2018-10-10 18:03:03 -04:00
```js
2020-12-16 00:37:30 -07:00
assert(JSON.stringify(first) === JSON.stringify([1, 2, 3]));
2018-10-10 18:03:03 -04:00
```
2021-02-06 04:42:36 +00:00
The `second` array should not change.
2018-10-10 18:03:03 -04:00
2020-12-16 00:37:30 -07:00
```js
assert(JSON.stringify(second) === JSON.stringify([4, 5]));
```
2018-10-10 18:03:03 -04:00
2021-02-06 04:42:36 +00:00
`nonMutatingConcat([1, 2, 3], [4, 5])` should return `[1, 2, 3, 4, 5]` .
2018-10-10 18:03:03 -04:00
```js
2020-12-16 00:37:30 -07:00
assert(
JSON.stringify(nonMutatingConcat([1, 2, 3], [4, 5])) ===
JSON.stringify([1, 2, 3, 4, 5])
);
2018-10-10 18:03:03 -04:00
```
2020-08-05 16:38:04 +08:00
2021-01-13 03:31:00 +01:00
# --seed--
## --seed-contents--
```js
function nonMutatingConcat(original, attach) {
// Only change code below this line
// Only change code above this line
}
var first = [1, 2, 3];
var second = [4, 5];
nonMutatingConcat(first, second);
```
2020-12-16 00:37:30 -07:00
# --solutions--
2021-01-13 03:31:00 +01:00
```js
function nonMutatingConcat(original, attach) {
// Only change code below this line
return original.concat(attach);
// Only change code above this line
}
var first = [1, 2, 3];
var second = [4, 5];
nonMutatingConcat(first, second);
```