I´d like to print a Full Currency Value using Angula.js.
<input class="receiptFrom" type="text" ng-model="receiptFrom"></input>
<label>{{ receiptValue | currency }}</label>
By doing this, when I input 1000
, my label prints $1,000.00
.
I´d like it to print One Thousand Dollars
.
Is it possible?