Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html ng-app="studentApp">
<head>
  <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.14/angular.min.js">
  </script>
  <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.14/angular-route.min.js">
  </script>
  <meta charset="utf-8">
  <title>AngularJS Provider Example</title>
</head>
<body ng-controller="FruitController">
  <ol>
      <li ng-repeat="fruit in fruits">
        {{fruit}}
      </li>
  </ol>
</body>
</html>
 
var studentApp = angular.module("studentApp",[]);
//Declaring a provider
studentApp.provider('fruitNames',function(){
  return {
    $get: function(){
      return {
        "list":[
          "Apple","Grapes","Orange", 
          "Banana","Pears","Plum",
          "Mango","kiwi","litchi"
      ]};
    }
  };
});
//Injecting the provider to application config
studentApp.config(function(fruitNamesProvider){});
//Using a provider inside  controller
studentApp.controller("FruitController",
  function ($scope,fruitNames) {
  $scope.fruits = fruitNames.list
});
Output 300px

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

Dismiss x
public
Bin info
saan1984pro
0viewers