Answers for "delete element at index in array javascript"

282

javascript remove element from array

var colors = ["red","blue","car","green"];
var carIndex = colors.indexOf("car");//get  "car" index
//remove car from the colors array
colors.splice(carIndex, 1); // colors = ["red","blue","green"]
Posted by: Guest on July-19-2019
8

delete item from list javascript

const array = [1, 2, 3];
const index = array.indexOf(2);
if (index > -1) {
  array.splice(index, 1);
}
Posted by: Guest on December-10-2020
0

javascript remove index from array

array.splice(index, 1); // Removes one element at index
Posted by: Guest on January-18-2021

Code answers related to "delete element at index in array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language