Seeking help to convert an AJAX JSON response into a JavaScript array. I have tried using split but it didn't yield the desired result. Any assistance is appreciated!
The AJAX JSON response (in a single string) is as follows:
Array[Date:"[['2016-09-09',162], ['2016-12-04',145], ['2017-01-11',130]]"]
My goal is to transform this into the following array:
var array = [['2016-09-09',162], ['2016-12-04',145], ['2017-01-11',130]];