Expressions in Angular

by cmyworld

HTML

<div ng-app ng-controller='ctrl'>
    {{property}}
    {{property!=null}}
    {{testMethod()}}
    {{x=testMethod();x}}
</div>

JavaScript

function ctrl($scope){
    $scope.property='hello';
    $scope.testMethod=function() {
        return "ere";
    }
}