I am using ng-repeat in my code:
<label ng-repeat="atp in Keywords | unique:'atp'">
{{atp}}
</label>
The values in atp
are as follows:
client
animal
zoo
boat
I want the final output to be:
animal
boat
client
zoo
Thank you for your assistance!