JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.3/angular.js"></script>
<div ng-app="myApp">
<div ng-controller="MainCtrl">
<select ng-model="Value"
ng-options="option for option in ['bananas', 'rice', 'applesauce', 'toast']"> </select>
</div>
</div>
JavaScript
/* http://stackoverflow.com/questions/13721928/how-to-use-angular-js-to-get-values-from-multi-select-checkbox */
var app = angular.module('myApp', []);
app.controller('MainCtrl', function($scope) {
});