I am trying to display a string[], which is like
JS Code
var result = ["Fish","Mutton","Shrimp","Chicken"];
$scope.res = result;
I get all the array values in $scope.res and displayed in HTML using ng-bind,
HTML code
<span ng-bind="res"></span>
Result: Fish,Mutton,Shrimp,Chicken
Needed Result: Fish, Mutton, Shrimp, Chicken
I need to add space between every array value.