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
I usually use jQuery data() function for that:
$($0).data().$scope
The $0 is currently selected item in chrome DOM inspector. $1, $2 .. and so on are previously selected items.