deserialize json response code example
Example 1: javascript json deserialize
var objData = JSON.parse(json_string);
Example 2: deserialize json jquery
const json = '{ "fruit": "pineapple", "fingers": 10 }';
const obj = JSON.parse(json);
console.log(obj.fruit, obj.fingers);