I am getting following response from jquery ajax in json (in response array)
{
"status": true,
"message": "Data fetched successfully",
"data": [{
"id": "19",
"employer_id": "5bea870168ebeb6db4d612c3",
"employee_id": "5bea868b68ebeb6db4d612c1"
}],
"count": 1
}
How can i get "count" object in javascript/jquery from this json (not in php) ?
i tried with following code but not working for me
alert(response.count)
;