Edit in JSFiddle

var myApp = angular.module('myApp',[]);

function MyCtrl($scope) {
    $scope.date = new Date();
    $scope.number = 12.24;
}
<div ng-controller="MyCtrl">
    today is {{date | date:'dd/MM/yyyy'}}
    <br>
    price is {{number | currency}}
</div>