I have two types of variables in my $scope angularJS.
1). $scope.name, $scope.title -- these are bind to two input boxes(these are bind to UI html code).
2). $scope.sum, $scope.difference -- these variables are used in JS code internally, I need them just as global variables to access in different functions.
Problem :- Is $scope.$watch function will run for variables of 2nd case, is these type of variables gave any bad effect on my page performance.