Answers for "format numbers money javascript"

4

javascript format currency

function formatToCurrency(amount){
    return (amount).toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,'); 
}
formatToCurrency(12.34546); //"12.35"
formatToCurrency(42345255.356); //"42,345,255.36"
Posted by: Guest on July-12-2020
16

how to format numbers as currency string js

(12345.67).toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,');  // 12,345.67
Posted by: Guest on February-23-2020

Code answers related to "format numbers money javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language