How can I extract a single value from a JSON data row using JavaScript?
// Assume the JSON object is: {"id":1,"name":"test1","price":"$1"}
var id = JSON.stringify(row).id;
I have tried this code, but it does not seem to work. Do you have any suggestions or ideas?