Login
Remember
Register
Ask a Question
What is the difference between slice and splice in Javascript?
0
votes
asked
Sep 26, 2023
in
JavaScript
by
AdilsonLima
What is the difference between slice and splice in Javascript?
javascript-interview-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Sep 26, 2023
by
AdilsonLima
Some of the major difference in a tabular form
Slice
Splice
Doesn't modify the original array(immutable)
Modifies the original array(mutable)
Returns the subset of original array
Returns the deleted elements as array
Used to pick the elements from array
Used to insert or delete elements to/from array
...