in AngularJs if you invoke service method:
app.service('nameService', function(){
this.Service = function (){console.log('hello')}
}
then you can use this service (object) : nameService.Service() so my question is how i can write function that have two arguments(name, function)
function service ( name, function ){
// how angular declare object with that value of first argument ?
}
i'm ask how to write function like service(name,fn){} ?