Answers for "make currency with comma separated string in javascript"

4

format money javascript commas

function formatMoney(n) {
    return "$ " + (Math.round(n * 100) / 100).toLocaleString();
}

n = 2123000;
// =>2,123,000
Posted by: Guest on November-09-2020
1

javascript thousand separator

function numberWithCommas(x) {
    return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
Posted by: Guest on June-11-2021

Code answers related to "make currency with comma separated string in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language