AngularJS Simple - ngBind
by Matthew Day
HTML
<div ng-app>
<input placeholder="Enter a name" ng-model="name" />
<p>Hello, {{name}}.</p>
<p>What does it feel like to have a name like <span ng-bind="name"></span>?</p>
</div>
JavaScript
/*
Using {{ }} within the opening and closing tag of an element or the 'ng-bind' directive as an attribute on an element will return the same result.
*/