Skip to content

Instantly share code, notes, and snippets.

@OdinsHat
Last active May 17, 2019 15:00
Show Gist options
  • Save OdinsHat/1f48021af19cde432e63e30537add54c to your computer and use it in GitHub Desktop.
Save OdinsHat/1f48021af19cde432e63e30537add54c to your computer and use it in GitHub Desktop.
// Add a space 3 from the end of a post code and make uppercase
this.address['postCode'] = this.address['postCode'].replace(/.{3}$/,' $&').toUpperCase();
// Add comma for thousand seperator
thousands = string.replace(/\B(?=(\d{3})+(?!\d))/g, ",");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment