Created
July 18, 2014 21:25
-
-
Save aalinat/fbf66f0eecc71d4d76a6 to your computer and use it in GitHub Desktop.
creating angular services
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
angular.module('myApp', []) | |
.factory('myService', function () { | |
return { | |
say: function () { | |
return "Hello World"; | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment