How to find and remove a specific item from an array in JavaScript?
Originally posted here!
To find and then remove an item or element from an array, you need to use the indexOf() array method to first find the element's index in the array and then use the splice() method to remove that item from that index position...
melvingeorge-me.hashnode.dev5 min read