EVOLUTION-MANAGER
Edit File: script.js
(function(angular) { 'use strict'; // declare a module var myAppModule = angular.module('myApp', []); // configure the module. // in this example we will create a greeting filter myAppModule.filter('greet', function() { return function(name) { return 'Hello, ' + name + '!'; }; }); })(window.angular);