I want to add thousand separators to the labels of the following picklist. No change should be made to the values, instead displaying text should use thousand separators.
<aura:iteration items="{!v.myValues}" var="item">
<option text="{!item.label+ ' km'}" value="{!item.value}"/>
</aura:iteration>
In the list "myValues", I have values such as "300000". These are texts not integers.
Can someone help with this ?