Angular: Basic binding

http://angularjs.org/

by vojtajina

HTML

<script type="text/javascript" ng:autobind src="http://code.angularjs.org/0.10.5/angular-0.10.5.js"></script>

Binding to property: {{one}}<br />
Binding to method: {{two()}}<br />
Binding to method with argument: {{two(one)}}

CSS

span {
    font-weight: bold;
}

JavaScript

function Main() {
    this.one = 'one';
    this.two = function(value) {
        return value && value || 'default';
    }; 
}