Answers for "format number with thousand separator in javascript and two decimal places"

22

decimal parse thousand separator javascript

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

Code answers related to "format number with thousand separator in javascript and two decimal places"

Code answers related to "Javascript"

Browse Popular Code Answers by Language