<p ng-bind="message"></p>
This 'message' has to be attached to the current elements controller's scope.
$scope.message = "Hello World";
At a later point of time , even if the message model is updated , that updated value is reflected in the HTML element.
When ...