I have a couple of arrays of numbers that are in string format, like:
A = ["1046.7779999999038", "1106.244999999035", "833.5839999999735"]
I want to use the numbers in number format further for some calculations and need them in numeric format, so that I have an array of numbers.
I wanted to use parseInt, but this is not quite right it seems. Maybe I need to split my array first? Ideally I want a function that has an array as input and converts it to the same array in numeric format.
Can somebody help me with this?