Nó JS Formato Número 2 Decimais com vírgula

function numberWithCommas(x) {
  return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',');
}
kripi__