I would like to access my $scope variable in Chrome\'s JavaScript console. How do I do that?
$scope
I can neither see $scope nor the name of my mo
For only debugging purposes I put this to the start of the controller.
window.scope = $scope; $scope.today = new Date();
And this is how I use it.
then delete it when I am done debugging.