I have a price div in my website like this:
<div id="price"> 20000 </div>
Now I'm looking for a JavaScript method to add commas every three digits in all of my price "div"s.
I have a price div in my website like this:
<div id="price"> 20000 </div>
Now I'm looking for a JavaScript method to add commas every three digits in all of my price "div"s.
You can use toLocaleString
.
const priceDiv = document.querySelector('#price');
priceDiv.textContent = (+priceDiv.textContent).toLocaleString('en-US');
<div id="price">20000</div>