Snippets

Jan Pozivil Number with Commas

Created by Jan Pozivil
1
2
3
function numberWithCommas(x) {
  return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',');
}

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.