<select ng-model="list">
<option value="1">first</option>
<option value="2">next</option>
</select>
How to get selected option using angularjs? Most of the case I see they use ng-repeat but how to get selected option when I didn't use ng-repeat?
I console.log($scope.list)
I got undefined.