Answers for "javascript format currency with commas text field"

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

Code answers related to "javascript format currency with commas text field"

Code answers related to "Javascript"

Browse Popular Code Answers by Language