I have an array that looks like this:
["lorem", "ipsum", "1734", "dolor", "1", "301", "et", "4102", "92"]
Is there a way to remove all numbers in an array, even if they are stored as strings, so I would stay with this:
["lorem", "ipsum", "dolor", "et"]
Thanks for any tips.
source share