I am getting an object by name response, which has a property by name attribute.
On hovering on
response.attribute
I see
"{"Coupon Circle":"coupon_circle"}"
in chrome developer tools.(see Image)
On doing below
JSON.parse(response.attributes);
I get
Uncaught SyntaxError: Unexpected identifier
What should I do in order to get the object out of it?