I have created a factory/service in my angular app.
I want to debug it in the browser. Is there a way that I can access its instance and check what is the value of
Inject your service into any controller and then console.log(myService);
console.log(myService);
Fiddle.