Answers for "add decimal comma javascript"

36

node js format number 2 decimals with comma

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

Code answers related to "add decimal comma javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language