Is it possible to utilize ng-repeat and !$last in order to list answers separated by commas without displaying the last comma? Below is the current HTML code that I have been working with:
<h3 ng-repeat="answer in correctAnswers" ng-show="!$last">
{{answer + "," + " " }}
</h3>