I have around 6 functions in my code that are not interacting with anything in the DOM, and I need those only in one specific scope.
So, is there any issue if I turn this
$scope.verifyPlaceBetAvailable = function(param) {
//something happens here
}
into this
var verifyPlaceBetAvailable = function(param) {
//something happens here
}
?
I mean, that is going to have any impact in the performance of my app?