meledak array di dalam string javascript

var getValue = '["1","2"]';
var obj = JSON.parse(getValue) //obj is now ["1", "2"]
Lokesh003