We Can Achieve this by using
JSON.parse() .
JSON.parse() is a function that filters and transforms the results .
EXAMPLE: var json = '{ "firstName":"Prabhu", "lastName":"Kiran", "FundaCode":345 }';
var student = JSON.parse(json);
alert(student.firstName + " " + student.lastName); // => Prabhu Kiran