Answers for "how to remove an element in an array"

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
0

remove elements to this array

unset($_SESSION['cart'][$val1]);// $val1 is the key  of the element
Posted by: Guest on October-14-2021

Code answers related to "how to remove an element in an array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language