"["value"]" to array js code example
Example: "["value"]" to array js
var getValue = '["1","2"]';
var obj = JSON.parse(getValue) //obj is now ["1", "2"]
var getValue = '["1","2"]';
var obj = JSON.parse(getValue) //obj is now ["1", "2"]