I have a string representation of an array:
\'[\"item1\", \"item2\", \"item3\"]\'
I\'m trying to convert this back to an array.
Any
Just use JSON.parse('["item1", "item2", "item3"]');
JSON.parse('["item1", "item2", "item3"]');