$scope.some_random_variable = "random_value";
$scope.some_random_function = function(random_param){
console.log("randomness");
}
I want to know the difference in the context of digest cycle. As far as I can understand scope_function changes the visibility of Angular Function.
scope_function
here