AngularJS Example:
HTML
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<div ng-app ng-controller="myController">
Hello {{info}}
</div>
JavaScript
function myController($scope) {
$scope.info = 'AngularJS';
}