Home >Web Front-end >JS Tutorial >The difference between slice and splice in js
The difference between slice and splice in JavaScript is as follows: slice() returns a new copy of the array and does not change the original array; splice() modifies the original array. The syntax of slice() is slice(start, end), and the syntax of splice() is splice(start, deleteCount, ...items). slice() copies elements starting at a specified position, and splice() removes or replaces elements starting at a specified position.
The difference between slice and splice in JS
Get straight to the point
slice()
and splice()
are two methods used to manipulate arrays in JavaScript, but their functions are different.
Detailed expansion
slice()
slice(start[, end])
Parameters:
start
: Required, start copying elements from this index. end
: Optional, copy to this index (exclusive). Example:
<code class="js">const arr = [1, 2, 3, 4, 5]; const newArr = arr.slice(2); // [3, 4, 5]</code>
splice()
splice(start, deleteCount[, ...items])
Parameters:
: Required, start removing elements from this index.
: Required, the number of elements to be removed.
: Optional, the element to be inserted at index
start, if specified.
Example:
<code class="js">const arr = [1, 2, 3, 4, 5]; arr.splice(2, 2, 10, 11); // [1, 2, 10, 11, 5]</code>
Summary
The above is the detailed content of The difference between slice and splice in js. For more information, please follow other related articles on the PHP Chinese website!