i have a string containg an array. i can convert it using loop over string with different conditions but that will be slow. so is there any direct way to convert string which has array in it to an actuall array? my javascript string looks like this
arr_str = '["value1", "value2", "value3"]'
i want to convert it in array something like this
arr = ["value1", "value2", "value3"]