0 votes
in JavaScript by
What is the difference between slice and splice in Javascript?

1 Answer

0 votes
by

Some of the major difference in a tabular form

SliceSplice
Doesn't modify the original array(immutable)Modifies the original array(mutable)
Returns the subset of original arrayReturns the deleted elements as array
Used to pick the elements from arrayUsed to insert or delete elements to/from array
...