I have a data set like this:
["[25.517202,55.555715]", "[25.517202,55.555715]", "[25.517202,55.555715]", "[25.517202,55.555715]", "[25.517202,55.555713]", "[25.51177,55.557574]", "[25.509928,55.557512]", "[25.509934,55.557521]"]
I want to change into the following:
[[25.517202,55.555715], [25.517202,55.555715], [25.517202,55.555715], [25.517202,55.555715], [25.517202,55.555713], [25.51177,55.557574], [25.509928,55.557512], [25.509934,55.557521]]
How to remove the " from the array return using react?