Answers for "how to add commas to an integer 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 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
-1

how to format an integer with a comma in javascript

x.toString().toLocaleString(); // x must be a number
Posted by: Guest on July-15-2020

Code answers related to "how to add commas to an integer js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language