So we can use scope variables in our angular html easily like this:
You do not need to specify $rootScope in html. You can use it the same way as you use $scope variables
$rootScope
$scope
Just update from
Hello {{yourName}} you are in in {{$rootScope.zoneName}}!
to
Hello {{yourName}} you are in in {{zoneName}}!