A json object has a key named lastLogin which holds a string value.
I am attempting to display the names John and Blake.
$scope._users = [{
"User": {
"userid": "dummy",
"lastlogin": "{\"employees\":[{\"firstName\":\"John\"}, {\"firstName\":\"Blake\"}]}",
}
}];
Link to JSFIDDLE for reference
Any assistance on this matter would be highly appreciated.