Looking to show a string[], here's the setup:
JS Code
var result = ["Fish","Mutton","Shrimp","Chicken"];
$scope.res = result;
All array values are retrieved in $scope.res and displayed in HTML using ng-bind,
HTML code
<span ng-bind="res"></span>
Result: Fish,Mutton,Shrimp,Chicken
Desired Result: Fish, Mutton, Shrimp, Chicken
Adding spaces between each value is needed.