Skip to content

Instantly share code, notes, and snippets.

@utopictown
Created August 22, 2020 15:01
Show Gist options
  • Save utopictown/01c504b6d77c33dad40bfdda6135c438 to your computer and use it in GitHub Desktop.
Save utopictown/01c504b6d77c33dad40bfdda6135c438 to your computer and use it in GitHub Desktop.
currencyFormat(num) {
return "Rp " + num.toFixed().replace(/(\d)(?=(\d{3})+(?!\d))/g, "$1.");
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment