exampleArray.push("this is an item");
I a thing. But there are also 10 other items within.
So I never truly know where that item is (which enumeration).
Is there a way of saying
exampleArray.delete("this is an item");
where it will remove item with "that" content?
(JavaScript question)