Answers for "how to remove element based on its index in javascript"

282

array remove element js

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 from array javascript

var arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0];var removed = arr.splice(2,2);/*removed === [3, 4]arr === [1, 2, 5, 6, 7, 8, 9, 0]*/
Posted by: Guest on April-29-2020

Code answers related to "how to remove element based on its index in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language