Question:What is factory method? 

Answer Using factory method, we first define a factory and then assign method to it.
var mainApp = angular.module("mainApp", []);
mainApp.factory('MathService', function() {     
   var factory = {};  
		
   factory.multiply = function(a, b) {
      return a * b 
   }
   return factory;
});
 

+ Report
Total Preview: 1147
What is factory method?
Copyright © 2024. Powered by Intellect Software Ltd