1

How to add commas in numbers in JavaScript ? For example I want to add commas in this number 1445456523.56594

shashank
  • 43
  • 1
  • 6

1 Answers1

10

Use toLocaleString

var n=1445456523.56594;
console.log(n.toLocaleString());
Sagar V
  • 12,158
  • 7
  • 41
  • 68