SyntaxFix
Write A Post
Hire A Developer
Questions
The easiest way using parse() method:
parse()
var response = '{"a":true,"b":1}'; var JsonObject= JSON.parse(response);
this is an example of how to get values:
var myResponseResult = JsonObject.a; var myResponseCount = JsonObject.b;