Answers for "insert digit to a number with commas js"

4

javascript number to number with commas

var number = 3500;

console.log(number.toLocaleString());
Posted by: Guest on May-25-2021
2

add commas to a number javascript

function numberWithCommas(x) {
    return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
Posted by: Guest on June-11-2021

Code answers related to "insert digit to a number with commas js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language