Skip to content

Instantly share code, notes, and snippets.

@is8r
Last active December 16, 2015 21:29
Show Gist options
  • Save is8r/5500507 to your computer and use it in GitHub Desktop.
Save is8r/5500507 to your computer and use it in GitHub Desktop.
数値に3桁毎にカンマを入れる
number2Price = (n) ->
n.toString().replace /(\d)(?=(\d\d\d)+$)/g, '$1,'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment