How to subscribe on property change when using controller as syntax?
controller as
controller(\'TestCtrl\', function ($
AngularJs 1.5 supports the default $ctrl for the ControllerAs structure.
$scope.$watch("$ctrl.name", (value) => { console.log(value) });