This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| angular.module('module') | |
| .factory('myService', function($scope, $http, otherService) { | |
| // ... | |
| }); | |
| // is the same as | |
| angular.module('module') | |
| .factory('myService', ['$scope', '$http', 'otherService', function(scopy, ಠ_ಠ, $scope) { | |
| // scopy == Angular's $scope | |
| // ಠ_ಠ == Angular's $http |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| graph values { | |
| "''" -- "0" | |
| "''" -- "0.0" | |
| "''" -- "false" | |
| "''" -- "null" | |
| "'0'" -- "'0.0'" | |
| "'0'" -- "0" | |
| "'0'" -- "0.0" | |
| "'0'" -- "false" | |
| "'0.0'" -- "0" |
NewerOlder