Answers for "remove values from js array"

-1

how to remove a variable from an array javascript

let colors = ["red","blue","car","green"];
//remove car from the colors array
colors.splice(color[2]); // colors = ["red","blue","green"]
Posted by: Guest on April-22-2021
-1

how to remove a variable from an array javascript

let colors = ["red","blue","car","green"];
//remove car from the colors array
colors.splice(color[2]); // colors = ["red","blue","green"]
Posted by: Guest on April-22-2021

Code answers related to "remove values from js array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language