Need help creating a select list from a simple list, not an array or object with keys. All the resources I've come across are focused on keyed data types.
$scope.numbers = ['tweedle', 'beetle', 'battle'];
With the following code, the select list displays correctly initially.
<select ng-model="fox" ng-options="item for item in fox"></select>
However, after selecting an item, it splits the value into a comma-separated list. Try selecting one item and then another.
I believe it's related to the binding, but I can't pinpoint the issue: