Answers for "how to format number with comma in javascript"

5

javascript friendly number format with commas

//ES6 Way
const numberWithCommas = (x) => {
  return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',');
}
Posted by: Guest on July-23-2020
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

Code answers related to "how to format number with comma in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language