AngularJS Services: Constants

by jhoguet

HTML

<div ng-app="app" ng-controller="Controller as children">
    <strong>{{children.firstChild.name | name}}</strong> 
    <strong>{{children.filteredName}}</strong> 
</div>

JavaScript

angular.module('app', [])
.controller('Controller', function ($scope, $filter) {
    this.firstChild = {
        name: 'Lance'
    };;
    this.filteredName = $filter('name')();
})
.filter('name', function(){
    return function(input){
        return input;
    }
});