Answers for "add elements to an array with splice"

1

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;
}
Posted by: Guest on April-16-2020

Code answers related to "add elements to an array with splice"

Code answers related to "Javascript"

Browse Popular Code Answers by Language