Answers for "javascript array with remove"

373

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

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

Code answers related to "javascript array with remove"

Code answers related to "Javascript"

Browse Popular Code Answers by Language