Answers for "removing an alement from an array 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
12

removing first item array js

var list = ["bar", "baz", "foo", "qux"];
list.shift()//["baz", "foo", "qux"]
Posted by: Guest on November-30-2019

Code answers related to "removing an alement from an array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language