Answers for "JS display number with commas"

22

number with commas js

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

javascript number to number with commas

var number = 3500;

console.log(number.toLocaleString());
Posted by: Guest on May-25-2021
-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 "JS display number with commas"

Code answers related to "Javascript"

Browse Popular Code Answers by Language