Easy and straightforward data-binding

Data bindings are done on the DOM, which allows you to easily sync data between various parts of the DOM in a very succint matter.

<body ng-app>
    <span>Insert your name:</span>
    <input type="text" ng-model="user.name" />
    <h3>Echo: {{user.name}}</h3>
</body>

This snippet shows how the model attribute "name" is easily bound across different parts of the DOM without having to set up any extra boilerplate.

undefinedurl nextprice drop