I'm using this code to show a number of locations:
<div class="location" *ngFor="let item of location_array">
{{item}} <hr>
</div>
which results in all the locations, separated by an horizontal rule. How can I edit this to get the exact same result, but without the last horizontal rule?