- ng-model for elements use value attribute to show information like <input>
<input type="text" ng-model="contact.name">
- {{ model }} for elements use inner content to show information like <div>, <a>, ...
<div>
{{contact.name}}
</div>
contact model from $scope.contact in js code