add coma after thousand in html code example
Example 1: range in decimals html
<input type="range" name="points" min="1" max="10"
step="0.25" onchange="alert(this.value)"/>
Example 2: number with commas js
function numberWithCommas(x) {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',');
}
Example 3: add comma to number javascript
var n = 34523453.345
n.toLocaleString()
"34,523,453.345"