Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <script src="https://rawgit.com/angular/bower-angular/master/angular.min.js"></script>
  <script src="https://code.jquery.com/jquery.min.js"></script>
  <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
  
  <title>Lesson</title>
  
</head>
<body ng-app="myApp">
  <div class="container" ng-controller="myCtrl">
    <div class="well">
      <h1>Services</h1>
    </div>  
  </div> 
</body>
</html>
 
angular.module("myApp", [])
.controller("myCtrl", ['$scope', 'myService', 'myOtherService', function($scope, myService, myOtherService) { 
  //myService.testMethod();
  
  console.log(myOtherService.testMethod(5));
  
}])
.factory("myService", [function() {
  return {
    testMethod: function() {
      console.log("i'm a service");
    }
  };
}])
.service("myOtherService", ['myService', function(myService) {
  
  var service = {};
  
  service.testMethod = function(number) {
    myService.testMethod();
    return service.otherMethod(number) * 2;
  };
  
  service.otherMethod = function(number) {
    return number * 5;
  }
  
  return service;
  
}])
;
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
gmitticapro
0viewers