How to add commas in numbers in JavaScript ? For example I want to add commas in this number 1445456523.56594
Asked
Active
Viewed 5,256 times
1 Answers
10
Use toLocaleString
var n=1445456523.56594;
console.log(n.toLocaleString());

Sagar V
- 12,158
- 7
- 41
- 68