Advertisement
Guest User

Untitled

a guest
May 29th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. var myApp = angular.module('myApp',[]);
  2. myApp.controller('DoubleController', ['$scope', function($scope) {
  3. $scope.letter="A";
  4. }]);
  5.  
  6. var myApp = angular.module('myApp',[]);
  7. myApp.controller('DoubleController', [ function($scope) {
  8. $scope.letter="A";
  9. }]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement