Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
August 12, 2020 07:38 pm GMT

JavaScript Array Slice vs Splice: the Difference Explained with Cake

This could be translated to "how to not get confused between splice and slice" because, I can never remember the difference between the two. So I am hoping this trick will help me and you in the future -

S (p) lice = Slice + (p) => Slice + in (p) lace

Array.prototype.slice()

It is used to slice an array from the start point to end point, excluding end. Like the name suggests, it is used to slice elements out of an array, but unlike slicing a cake, slicing an array does not cut the actual array, but keeps it unmodified (infinite cake!).

arr.slice(start, [end])

Rules

  1. A new array is returned and the original array is unmodified.
  2. If end is omitted, end becomes the end (last element) of array.
  3. If start is -ve, the elements are counted from the end.
const infiniteCake = ['','','','','','']let myPieceOfCake = infiniteCake.slice(0) // ['']let yourDoublePieceOfCake = infiniteCake.slice(0,2) // (2) ["", ""]console.log(infiniteCake) //['','','','','','']

As you see, inifinteCake is unmodified.

Array.prototype.splice()

Splice does operations in place, which means it modifies exisiting array. In addition to removing elements, splice is also used to add elements. Splice is the real world cake "slice";

arr.splice(start, [deleteCount, itemToInsert1, itemToInsert2, ...])

Rules

  1. Operation is in place.
  2. An array is returned with the deleted items.
  3. If start is -ve, the elements are counted from the end.
  4. If deleteCountis omitted,the elements until the end of array are removed.
  5. If items to insert such as itemToInsert1 are omitted, elements are only removed.
const cake = ['','','','','',''];let myPieceOfCake = cake.splice(0, 1) // [""]console.log(cake) // (5) ["", "", "", "", ""]let yourDoublePieceOfCake = cake.splice(0,2) //(2) ["", ""]console.log(cake) //(3) ["", "", ""]

Here, cake is modified and reduces in size.

Code Examples

const myArray  = [1,2,3,4,5,6,7] console.log(myArray.slice(0))       // [ 1, 2, 3, 4, 5, 6, 7 ]console.log(myArray.slice(0, 1))    // [ 1 ]console.log(myArray.slice(1))       // [ 2, 3, 4, 5, 6, 7 ]console.log(myArray.slice(5))       // [ 6, 7 ]console.log(myArray.slice(-1))      // [ 7 ]console.log(myArray)                // [ 1, 2, 3, 4, 5, 6, 7 ]const secondArray = [10, 20, 30, 40, 50]console.log(secondArray.splice(0, 1))   // [ 10 ] : deletes 1 element starting at index 0console.log(secondArray.splice(-2, 1))  // [ 40 ] : deletes 1 element starting at index end-2 console.log(secondArray)                // [ 20, 30, 50 ]console.log(secondArray.splice(0))      // [ 20, 30, 50 ] : deletes all elements starting at index 0console.log(secondArray)                // []console.log(secondArray.splice(2, 0, 60, 70)) // [] : deletes 0 elements starting at index 2 (doesn't exist so defaults to 0) and then inserts 60, 70console.log(secondArray)                // [60, 70]

TL;DR

Use splice if the original array needs to be modified, or elements need to be added.

Use slice for removing elements if original array should not be modified.

Interested in more tutorials and JSBytes from me? Sign up for my newsletter. or follow me on Twitter


Original Link: https://dev.to/shrutikapoor08/javascript-array-slice-vs-splice-the-difference-explained-with-cake-12l9

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To