Answers for "format with commas int javascript"

2

format number with commas js

foramtNumber = (num,div=",")=>{
  return num.toString().replace(/\B(?=(\d{3})+(?!\d))/g, div);

}
Posted by: Guest on December-10-2020
-1

how to format an integer with a comma in javascript

x.toString().toLocaleString(); // x must be a number
Posted by: Guest on July-15-2020

Code answers related to "format with commas int javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language