Skip to content

Instantly share code, notes, and snippets.

@CS1000
Created October 26, 2014 08:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CS1000/acf63e2cd1a1f3ac0bbc to your computer and use it in GitHub Desktop.
Save CS1000/acf63e2cd1a1f3ac0bbc to your computer and use it in GitHub Desktop.
ABBReviate in JS (aka, remove vowels)
String.prototype.abbr = function() {return this.replace(/[aeiou]+/g,'')};
//eg:
'people'.abbr()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment