Skip to content

Instantly share code, notes, and snippets.

@pankajpatel
Created December 19, 2014 06:22
Show Gist options
  • Save pankajpatel/93c12f2f3464e2a59b52 to your computer and use it in GitHub Desktop.
Save pankajpatel/93c12f2f3464e2a59b52 to your computer and use it in GitHub Desktop.
Sample Factory in AngularJS
angular
.module('sampleModule', [])
.factory('sampleFactory',[function(){
return {
/*
* define Factory functions here
*/
}
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment