Skip to content

Instantly share code, notes, and snippets.

@zoxon
Created February 2, 2015 03:58
Show Gist options
  • Save zoxon/851c657312df61816219 to your computer and use it in GitHub Desktop.
Save zoxon/851c657312df61816219 to your computer and use it in GitHub Desktop.
var formatPrice = function(x) {
var parts = x.toString().split(".");
parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, " ");
return parts.join(".");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment