Answers for "remove item rfom array js\"

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
1

remove an element from array javascript

let a=[1,2,3,4,5,6,7,8]
//if we want to remove an element with index x
a.splice(x,1)
Posted by: Guest on June-24-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language