Skip to content

Instantly share code, notes, and snippets.

@kevinblanco
Last active August 29, 2015 14:15
Show Gist options
  • Save kevinblanco/2fb5876aef89a7da0800 to your computer and use it in GitHub Desktop.
Save kevinblanco/2fb5876aef89a7da0800 to your computer and use it in GitHub Desktop.
//factory style, more involved but more sophisticated
myApp.factory('helloWorldFromFactory', function() {
return {
sayHello: function() {
return "Hello, World!"
}
};
});
//Controller
myApp.controller('ExampleCtrl', function($scope, helloWorldFromFactory){
console.log(helloWorldFromFactory.sayHello() );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment