Answers for "how to separate thousandth with comma js"

22

number with commas js

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

javascript format numbers with commas

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

Code answers related to "how to separate thousandth with comma js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language