Answers for "how to add thousand separator in javascript"

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
6

add comma to number javascript

var n = 34523453.345
n.toLocaleString()
"34,523,453.345"
Posted by: Guest on October-14-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

Code answers related to "how to add thousand separator in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language