Answers for "how to format number as currency string in javascript with currency symbol at the end??"

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 "how to format number as currency string in javascript with currency symbol at the end??"

Code answers related to "Javascript"

Browse Popular Code Answers by Language