I have a question about manipulating JSON Objects in Angular. Specifically, I am looking to replace all semicolons ";" with an empty string from a specific key.
$scope.users = data;
My goal is to iterate through the object and only replace values in the following key:
$scope.users[i]['pic'];
Any help or guidance on this matter would be greatly appreciated. Thank you!