I am working on angularjs i have getting this problem
{{420/60}} will display 7
that is fine for me.
But when i am try this with 450 then it will display 7.5 i want to display only 7 i.e only integer number.
{{450/60 }} will display 7.5 but need only 7
if i used this
{{450/60 | number : 0}} then output is 8
because it will round of the text.please help me i want to display only 7.