Skip to content

Instantly share code, notes, and snippets.

@aalinat
Created July 18, 2014 21:25
Show Gist options
  • Save aalinat/fbf66f0eecc71d4d76a6 to your computer and use it in GitHub Desktop.
Save aalinat/fbf66f0eecc71d4d76a6 to your computer and use it in GitHub Desktop.
creating angular services
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