Angular starting point
by otupman
HTML
<div ng-controller="MyCtrl">
<p>{{message}}</p>
</div>
JavaScript
function MyCtrl($scope) {
$scope.message = "Hello, world";
}
by otupman
<div ng-controller="MyCtrl">
<p>{{message}}</p>
</div>
function MyCtrl($scope) {
$scope.message = "Hello, world";
}