I have an array containing single strings. e.g. ["a", "b", "3", "c"]; However, I need any number in this array to be a number and not a string.
Result would be ["a", "b", 3, "c"]; so I could then run a regex and get all numbers out of the array.
Hope this is clear enough.