Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

array remove index from array

const array = [2, 5, 9];

//Get index of the number 5
const index = array.indexOf(5);
//Only splice if the index exists
if (index > -1) {
  //Splice the array
  array.splice(index, 1);
}

//array = [2, 9]
console.log(array); 
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #array #remove #index #array
ADD COMMENT
Topic
Name
8+3 =