Answers for "remove string from array element in javascript"

36

javascript remove from array by index

//Remove specific value by index
array.splice(index, 1);
Posted by: Guest on May-06-2020
17

how to take an element out of an array in javascript

var data = [1, 2, 3];

// remove a specific value
// splice(starting index, how many values to remove);
data = data.splice(1, 1);
// data = [1, 3];

// remove last element
data = data.pop();
// data = [1, 2];
Posted by: Guest on November-11-2019

Code answers related to "remove string from array element in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language