javascript to currency code example
Example 1: format amount in javascript
const formatToCurrency = amount => {
return "$" + amount.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, "$&,");
};
formatToCurrency(12.34546);
formatToCurrency(42345255.356);
Example 2: javascript format currency
function formatToCurrency(amount){
return (amount).toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,');
}
formatToCurrency(12.34546);
formatToCurrency(42345255.356);
Example 3: js format urcurency
var formatter = new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD',
});
formatter.format(2500);
Example 4: tofixed currency in js
(12345.67).toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,');
Example 5: float to currency js
function floatToEuro(float){
var euroCurrency
euroCurrency = '\u20AC' + float.toLocaleString('nl-NL',{minimumFractionDigits: 2});
console.log(euroCurrency);
return euroCurrency;
};
Example 6: format currency javascript
Steven Jasper Calcaro