I'm trying to extract just the response from the following response
"{"Message":"Looks like you need to login"}"
I tried to stringyfy it as follows
var response = "{"Message":"Looks like you need to login"}";
var json_response = JSON.stringify(response);
But my response ends up looking something like this.
"{\"Message\":\"Looks like you need to login\"}"
Any ideas on why this is happening? and how I can extract just the message by doing something like
json_response.Message
perhaps?