AngularJS has a DOM based controller inheritance, as mentioned in the angular Docs.
Base Controller
Use objects instead of using primitive value. In your case define an object like this
$scope.obj = {"value":"base"};
and try(obj.value). it will work.