Answers for "js make string a currency"

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 "Javascript"

Browse Popular Code Answers by Language