I am trying to transform all values in a 2D array from strings to numbers, except values that are actually strings (within the Javascript Excel Add-in API)
Example:
[["1000"],["3.2"],["banana"]]
to
[[1000],[3.2],["banana]]
"1000" -> 1000
"3.2" -> 3.2
"banana" -> "banana"