I have an Angular function where i log a value
$scope.getFormattedDate = function(date){
console.log(date)
}
and here in the html code
span {{::getFormattedDate('hello')}}
According to this the value should get rendered once and never again. But when i scroll, the value gets printed in the console continuously.
Where am i going wrong?