Answers for "js insert into array"

C
13

javascript push in specific index

arr.splice(index, 0, item);
//explanation:
inserts "item" at the specified "index",
deleting 0 other items before it
Posted by: Guest on July-16-2020
20

javascript insert item into array

var colors=["red","blue"];
var index=1;

//insert "white" at index 1
colors.splice(index, 0, "white");   //colors =  ["red", "white", "blue"]
Posted by: Guest on July-22-2019
8

insert into array js

// for me lol... pls don't delete!
// use splice to insert element
// arr.splice(index, numItemsToDelete, item); 
var list = ["hello", "world"]; 
list.splice( 1, 0, "bye"); 
//result
["hello", "bye", "world"]
Posted by: Guest on July-14-2020
1

insert into array js

array.splice(index, 0, value);
Posted by: Guest on October-10-2021
1

js insert in array

const months = ['Jan', 'March', 'April', 'June'];
months.splice(1, 0, 'Feb');
// inserts at index 1
console.log(months);
// expected output: Array ["Jan", "Feb", "March", "April", "June"]

months.splice(4, 1, 'May');
// replaces 1 element at index 4
console.log(months);
// expected output: Array ["Jan", "Feb", "March", "April", "May"]
Posted by: Guest on June-21-2020
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 "C"

Browse Popular Code Answers by Language