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
What is factory method?