In my Angular application, I have a select menu populated with countries of the world along with their 2-letter abbreviations.
I recently learned that you can hard-code an option item before using ng-repeat in a select menu by referring to the Angular docs (https://code.angularjs.org/1.2.26/docs/api/ng/directive/select)
For this purpose, I used it to add a "Choose..." menu item as a null value.
The remaining items are fetched from a JSON source and sorted alphabetically based on country code in my service.
However, my client now requires me to place the United States at the top of the menu since it is the most frequently selected country (and a British version with UK at the top).
Is there a way to achieve this without rearranging the structure of my JSON file?