array splice add element code example
Example 1: add elements to middle of array using splice
const strings=['a','b','c','d']
strings.splice(2,0,'alien')
console.log(strings)
Example 2: add elements to an array with splice
var fruits = ["Banana", "Orange", "Apple", "Mango"];
document.getElementById("demo").innerHTML = fruits;
function myFunction() {
fruits.splice(2, 0, "Lemon", "Kiwi");
document.getElementById("demo").innerHTML = fruits;
}
Example 3: splice javascript
let arrDeletedItems = arr.splice(start[, deleteCount[, item1[, item2[, ...]]]])