Skip to content

Instantly share code, notes, and snippets.

@kevinblanco
Last active August 29, 2015 14:15
Show Gist options
  • Save kevinblanco/d52b2d9e124cda7bec49 to your computer and use it in GitHub Desktop.
Save kevinblanco/d52b2d9e124cda7bec49 to your computer and use it in GitHub Desktop.
Service example
myApp.service('helloWorldFromService', function() {
this.sayHello = function() {
return "Hello, World!"
};
});
myApp.controller('ExampleCtrl', function($scope, helloWorldFromService){
console.log( helloWorldFromService.sayHello() ) ;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment