I want to know, how to get scope by scope.$id. I know that I can get all scopes in page and then I can find that one scope, but I looking for simpler implementation.
For instance:
1. I want to get scope which id is 100 from $rootScope:
$rootScope.$getScope(100)
2. From current $scope or variable angular
$scope.$getScope(100)
angular.scope(100)
Can I get specified scope in that way?