Interviewer And Interviewee Guide

AngularJS Developer Interview Question:

Tell me what is service method?

Submitted by: Muhammad
Using service method, we define a service and then assign method to it. We've also injected an already available service to it.

mainApp.service('CalcService', function(MathService){
this.square = function(a) {
return MathService.multiply(a,a);
}
});
Submitted by: Muhammad

Read Online AngularJS Developer Job Interview Questions And Answers
Copyright 2007-2024 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.