Answers for "list remove item javascript"

8

delete item from list javascript

const array = [1, 2, 3];
const index = array.indexOf(2);
if (index > -1) {
  array.splice(index, 1);
}
Posted by: Guest on December-10-2020
8

delete item from list javascript

const array = [1, 2, 3];
const index = array.indexOf(2);
if (index > -1) {
  array.splice(index, 1);
}
Posted by: Guest on December-10-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language