Answers for "format numbers as currency string"

9

how to format money as currency string

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

formatting numbers as currency string

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

Code answers related to "format numbers as currency string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language