I need to show positive or negative number. The problem is that I get data from an api where I have a delta -X for positive and X for negative.
So to show my data I need to multiply per -1.
I have this code:
{{myData * -1}}
But I need a way to add a + symbol to my data in case it is positive. If I have (-120*-1) I should get +120.
How could I add plus to my number?