Answers for "java script delete item array"

23

how to remove element from array in javascript

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 April-23-2020
-1

remove array from array javascript

myArray = myArray.filter( ( el ) => !toRemove.includes( el ) );
Posted by: Guest on October-27-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language