Answers for "delete array from array es6"

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
2

javascript array remove

// - - - - - - - - - - -
// Remove Last Element (pop)
// - - - - - - - - - - -
// example (remove the last element in the array)
let yourArray = ["aaa", "bbb", "ccc", "ddd"];
yourArray.pop(); // yourArray = ["aaa", "bbb", "ccc"]

// syntax:
// <array-name>.pop();

// - - - - - - - - - - -
// Remove First Element (shift)
// - - - - - - - - - - -
// example (remove the last element in the array)
let yourArray = ["aaa", "bbb", "ccc", "ddd"];
yourArray.shift(); // yourArray = ["bbb", "ccc", "ddd"]

// syntax:
// <array-name>.shift();
Posted by: Guest on December-08-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language