Answers for "separate thousands with comma js"

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
22

number with commas js

function numberWithCommas(x) {
  return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',');
}
Posted by: Guest on June-13-2020

Code answers related to "separate thousands with comma js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language