Using the Splice Method in Javascript

Published: 20 September 2018
on channel: TheHowToMac
161
3

Here is a quick tutorial on how to use the .splice method in javascript.
The splice method accepts three arguments with the third being optional. The three methods are as follows

1. Start Index - Zero based
2. Delete-How many items to delete from the start index (can be 0)
3. *Optional Array of items to be added

example:
myAry.splice(2,1,"NewItem")

This removes 1 item starting at index 2 from myAry and adds a string called "New item" at an index of 2.


Watch video Using the Splice Method in Javascript online without registration, duration hours minute second in high quality. This video was added by user TheHowToMac 20 September 2018, don't forget to share it with your friends and acquaintances, it has been viewed on our site 161 once and liked it 3 people.