DEV Community

Santo Khan
Santo Khan

Posted on

Best way to splice an array by value

const index = array.indexOf(item);
if (index !== -1) array.splice(index, 1);

Top comments (0)