Answers for "numberwithcommas in safari javascript"

6

js format number thousands separator

function numberWithCommas(x) {
    return x.toString().replace(/\B(?<!\.\d*)(?=(\d{3})+(?!\d))/g, ",");
}
Posted by: Guest on January-05-2021
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 "Javascript"

Browse Popular Code Answers by Language