2018-10-04 14:37:37 +01:00
---
id: 579e2a2c335b9d72dd32e05c
title: Slice and Splice
challengeType: 5
2019-08-05 09:17:33 -07:00
forumTopicId: 301148
2021-01-13 03:31:00 +01:00
dashedName: slice-and-splice
2018-10-04 14:37:37 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
2018-10-04 14:37:37 +01:00
You are given two arrays and an index.
2020-11-27 19:02:05 +01:00
2020-07-07 14:10:04 +01:00
Copy each element of the first array into the second array, in order.
2020-11-27 19:02:05 +01:00
Begin inserting elements at index `n` of the second array.
2018-10-04 14:37:37 +01:00
Return the resulting array. The input arrays should remain the same after the function runs.
2020-11-27 19:02:05 +01:00
# --hints--
`frankenSplice([1, 2, 3], [4, 5], 1)` should return `[4, 1, 2, 3, 5]` .
```js
assert.deepEqual(frankenSplice([1, 2, 3], [4, 5], 1), [4, 1, 2, 3, 5]);
2018-10-04 14:37:37 +01:00
```
2020-11-27 19:02:05 +01:00
`frankenSplice([1, 2], ["a", "b"], 1)` should return `["a", 1, 2, "b"]` .
2018-10-04 14:37:37 +01:00
2020-11-27 19:02:05 +01:00
```js
assert.deepEqual(frankenSplice(testArr1, testArr2, 1), ['a', 1, 2, 'b']);
```
2018-10-04 14:37:37 +01:00
2020-11-27 19:02:05 +01:00
`frankenSplice(["claw", "tentacle"], ["head", "shoulders", "knees", "toes"], 2)` should return `["head", "shoulders", "claw", "tentacle", "knees", "toes"]` .
2018-10-04 14:37:37 +01:00
```js
2020-11-27 19:02:05 +01:00
assert.deepEqual(
frankenSplice(
['claw', 'tentacle'],
['head', 'shoulders', 'knees', 'toes'],
2
),
['head', 'shoulders', 'claw', 'tentacle', 'knees', 'toes']
);
```
2018-10-04 14:37:37 +01:00
2021-08-11 17:00:44 +02:00
All elements from the first array should be added to the second array in their original order. `frankenSplice([1, 2, 3, 4], [], 0)` should return `[1, 2, 3, 4]` .
2020-11-27 19:02:05 +01:00
```js
assert.deepEqual(frankenSplice([1, 2, 3, 4], [], 0), [1, 2, 3, 4]);
2018-10-04 14:37:37 +01:00
```
2020-11-27 19:02:05 +01:00
The first array should remain the same after the function runs.
2018-10-04 14:37:37 +01:00
2020-11-27 19:02:05 +01:00
```js
frankenSplice(testArr1, testArr2, 1);
assert.deepEqual(testArr1, [1, 2]);
```
The second array should remain the same after the function runs.
```js
frankenSplice(testArr1, testArr2, 1);
assert.deepEqual(testArr2, ['a', 'b']);
```
2018-10-04 14:37:37 +01:00
2020-11-27 19:02:05 +01:00
# --seed--
## --after-user-code--
2018-10-04 14:37:37 +01:00
```js
2018-10-20 21:02:47 +03:00
let testArr1 = [1, 2];
let testArr2 = ["a", "b"];
2018-10-04 14:37:37 +01:00
```
2020-11-27 19:02:05 +01:00
## --seed-contents--
2018-10-04 14:37:37 +01:00
2020-11-27 19:02:05 +01:00
```js
function frankenSplice(arr1, arr2, n) {
return arr2;
}
2018-10-04 14:37:37 +01:00
2020-11-27 19:02:05 +01:00
frankenSplice([1, 2, 3], [4, 5, 6], 1);
```
2018-10-04 14:37:37 +01:00
2020-11-27 19:02:05 +01:00
# --solutions--
2018-10-04 14:37:37 +01:00
```js
function frankenSplice(arr1, arr2, n) {
// It's alive. It's alive!
let result = arr2.slice();
for (let i = 0; i < arr1.length ; i + + ) {
result.splice(n+i, 0, arr1[i]);
}
return result;
}
frankenSplice([1, 2, 3], [4, 5], 1);
```