How to remove specific item from array by value in Javascript?
Find the index of the array element you want to remove using indexOf, and then remove that index with splice.
The splice() method changes the contents of an array by removing existing elements and/or adding new elements.
const array = [2, 5, 9];
c...
heyitsvajid.hashnode.dev2 min read