Have an equality operator in angularJS that is not returning as I should.
example:
The value that comes from the object "data.valuea" is 50.
Have the value that comes from the object "data.valueb" is 200
<p ng-show="{{data.valuea >= data.valueb}}" class="ng-hide premioprogress">OK</p>
<p ng-show="{{data.valuea < data.valueb}}" class="ng-hide premioprogress">Faltam: {{data.valueb - data.valuea}} pts</p>
Am I doing something wrong? Or would a more correct way to do this?