I am new to JSON and jQuery and am building an AJAX REST API Application.
I need to know how to pull a specific key and its corresponding value from a JSON Array I am getting back from an AJAX POST call.
JSON Array is as below:
[
{
"empID": 7,
"deptID": 578,
"batchID": 38409650,
"recordID": 1
}
]
Pls help, thanks.