I have this code snippet below to load a comboBox with the 'name' of all values and is working correctly.
<select
ng-model="information"
ng-options="value.id as value.name for value in information">
</select>
But I need to exclude the value.name whose id equals 301 from the load. How do I load all value.name, except the value.name that has the id equal to 301?