サービスが次のように宣言されているAngularアプリを使用しています。
App.service("myService", function(){
this.calculation1 = function(){
var util = function(){
}
//doing somthing
}
this.calculation2 = function(){
// how can I call util function here?
}
}
Calculation2 メソッド内で util 関数を使用したいと考えています。
どうやってやるの?
前もって感謝します。