Published
- 1 min read
add comma to number javascript
The solution for this is noted below
add comma to number javascript
Solution
var n = 34523453.345
n.toLocaleString()
"34,523,453.345"
Try other methods by searching on the site. That is if this doesn’t work