AngularJS Example:

by BSmyth634

HTML

<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<div ng-app>
  <form>
    <textarea rows="4" type="text" ng-model="todoText" size="30" placeholder="add new todo here">
    </textarea>
  </form>
  <h1>
    {{todoText || 'Hello World'}}
   </h1>
</div>