Slice and Splice -- Basic Algo. Scripting

Return the resulting array. The input arrays should remain the same after the function runs.?

`frankenSplice([1, 2], ["a", "b"], 1)` should return  `["a", 1, 2, "b"]` .?

well they need to return quite allot?

also a ussefull link: Slice and Splice (algorithms)

1 Like