Skip to content

Instantly share code, notes, and snippets.

@johnallers
Created March 9, 2012 23:48
Show Gist options
  • Save johnallers/2009359 to your computer and use it in GitHub Desktop.
Save johnallers/2009359 to your computer and use it in GitHub Desktop.
JavaScript trim()
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g, '');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment