Skip to content

Instantly share code, notes, and snippets.

@theuves
Created December 26, 2018 13:01
Show Gist options
  • Save theuves/db35ded3f22ebd38fc5645fb38e04d60 to your computer and use it in GitHub Desktop.
Save theuves/db35ded3f22ebd38fc5645fb38e04d60 to your computer and use it in GitHub Desktop.
const formatNumber = (str) => Array.from(str).map((val, i, arr) => ((arr.length - i) % 6 - 1) % 3 === 0 && i !== arr.length - 1 ? `${val}.` : val).join('')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment