Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
array.splice(start, deleteCount, value, ...)
start
The array element at which the insertion and/or deletion is to begin.
deleteCount
The number of elements, starting with and including start, to be deleted from array. Specify 0 to insert elements without deleting any.
value, ...
Zero or more values to be inserted into array, beginning at the index specified by start.
An array containing the elements, if any, deleted from array.