I'm trying to remove a period '.' from a value that comes from a feed, however I don't really want to do this in my app.js, rather in my view.
So if I do the following:
value: {{item.v_value}}
I get 3.5, I'd simply like to strip out and render out 35 instead.
So basically reusing the replace function - but on the item value only.
v_valuea string or a number?