Angular: preset dropdown 1.0rc3

http://angularjs.org/

HTML

<script src="http://code.angularjs.org/angular-1.0.0rc3.js"></script>
<div ng-controller="MyCtrl">

    {{selectedMonth}} 
    <br/>

    {{selectedFruit}}
    <hr/>
    
    <br/>
    <select ng-model="selectedMonth" ng-options="month for month in monthList"></select> 
    <br/>
    <select ng-model="selectedFruit" ng-options="fruit.text for fruit in fruitList"></select>    
    <br/>

</div>

JavaScript

var myApp = angular.module('myApp',[]);


function MyCtrl($scope) {
    
    $scope.selectedMonth= 'Feb';

   
    
    $scope.monthList=['Jan','Feb','Mar','Apr'];  
    
    $scope.fruitList = [{text:'Apple'},{text:'Banana'},{text:'Orange'}];
    
        //$scope.selectedFruit= 'Banana';
    $scope.selectedFruit= $scope.fruitList[1]; 
    
}