Hey I have problem with set default value in select problem is started when I set inside array objects. How can I fix this problem??
HTML
<div ng-app="select" ng-controller="checking">
<select ng-model="lala" ng-options="item.name for item in arrayName">
</select>
</div>
JavaScript
var app = angular.module('select', []);
app.controller('checking', ($scope)=> {
$scope.arrayName = [{'name':'first'}, {'name':'second'}, {'name':'third'}];
$scope.lala = "first";
});