in reply to Removing certain elements from an array
If you don't specify LIST, it just removes the specified elements from the array and "scrunches" the rest of the array together.splice ARRAY,OFFSET,LENGTH,LIST Removes the elements designated by OFFSET and LENGTH from an array, and replaces them with the elements of LIST, if any.
|
|---|