Angular: Empty Fiddle
http://angularjs.org/
HTML
<script src="http://code.angularjs.org/angular-1.0.1.js"></script>
<div ng-controller="MyCtrl">
<ul>
<li ng-repeat="x in favoriteColors"><input type="checkbox" checked> {{x}}</li>
<li ng-repeat="x in allColors"><input type="checkbox"> {{x}}</li>
</ul>
</div>
JavaScript
var myApp = angular.module('myApp',[]);
function MyCtrl($scope) {
$scope.allColors = ['red', 'green', 'black', 'white'];
$scope.favoriteColors = ['white', 'black'];
}