I have a PHP script which is used for a POST request which returns (echos) the array:
array(3) {
  ["message"]=>
  string(32) "The item was successfully saved"
  ["newItemId"]=>
  int(9)
  ["newCustomFieldIds"]=>
  string(3) "[9]"
}
My AJAX request:
$.ajax({
        url: 'updateItemDetails.php',
        method: 'post',
        data: {
            ...
        }
    }).done(function(response) {
            console.log(response); //correct
            console.log(response['newCustomFieldIds']); //undefined
            console.log(JSON.parse(response['newCustomFieldIds'])); //unexpected token u
    });
The first console.log produces:
{"message":"The item was successfully saved","newItemId":9,"newCustomFieldIds":"[9]"}
which is as expected. However, the second one gives undefined.
So, when I JSON.parse, I get Uncaught SyntaxError: Unexpected token u! What I'm trying to do is to get the "[9]" to a real array, ie. [9].
I don't understand this. newCustomFieldIds definitely exists, because when logging the response, I can see it -- so why doesn't the console.log(response['newCustomFieldIds']) work?
 
    