Answers for "typescript number format comma"

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
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 "typescript number format comma"

Code answers related to "Javascript"

Browse Popular Code Answers by Language