js
What Is the Difference between Slice and Splice

What is the difference between slice and splice

Some of the major differences 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/delete elements to/from array