I would like to convert string formatted text into an array as follows. Source string is like:
var myString = "[3, 8750, "Some text, with commas"]";
Required result is as follows:
myArray[0] = 3;
myArray[1] = 8750;
myArray[2] = "Some text, with commas";
I will appreciate any kind of support..