Help with splicing an array into another

So, doing one of the challenges, I saw that this was the solution on the help section:

function frankenSplice(arr1, arr2, n) {
  // It's alive. It's alive!
  let localArr = arr2.slice();
  localArr.splice(n, 0, ...arr1);
  return localArr;
}

I tried to shorten it with:

function frankenSplice(arr1, arr2, n) {
  return arr2.splice(n, 0, ...arr1);
}
console.log(frankenSplice([1, 2, 3], [4, 5, 6], 1));

But this doesn’t work. It just returns an empty array.

I read that .slice actually returns a ‘shallow copy’ which, by my understanding, returns the references to the original.

But this doesn’t really shed any light on the situation for me.

I also noticed that using let localArr = arr2; instead of let localArr = arr2.slice(); also works. So now we have two arrays that are the exact same, but one can’t be used

I realised now that .slice may not have anything to do with the reason? It looks like I have to use a local variable for .splice instead of the one I was passed

Hi @OakSkin

Array.prototype.splice mutates the array and returns removed items from the array. Since you are not removing any items but inserting elements, it returns an empty array.

You could do something like below but it doesn’t answer the question because the input arrays should not be mutated. The Array.prototype.slice creates a copy of the array before mutating it leaving the original arrays unchanged.

I hope that helps.

function frankenSplice(arr1, arr2, n) {
   arr2.splice(n, 0, ...arr1);
   return arr2;
}
1 Like

Thanks for the response.

Just to be clear, splicing it at the point of return isn’t actually returning the array itself? But rather, what you ‘extracted’ from the array?

Which, in this case, is nothing?

But if you splice arr2 first, you can then return the now-mutated array?

Yes. It is important to understand how splice works. The arguments you pass to splice usually look like:

array.splice(start, deleteCount, item1, item2, ..., itemN)

start is the index where you start inserting items, deleteCount is the number of items you want to delete starting from index start. item1, item2, …, itemN are the items you want to insert starting from index start. It returns an array containing the deleted items.

In your case the number of items to delete in the array is 0. Therefore, splice will return an empty array and your function will return the empty array returned by splice because of:

return arr2.splice(n, 0, ...arr1)

Yes. You can mutate arr2 on a separate line before returning it. However, you are not supposed to mutate any of the arrays passed. That is why you need to create a copy of the array using .slice or the spread syntax.

You can read more about .splice from the documentation.

1 Like

Thanks for the explanation, it makes it much clearer!

Yeah, I had completed the challenge but was trying to play a round with it to better understand how it works. Took a bit of explaining for this to click :slight_smile:

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.