Skip to content

Instantly share code, notes, and snippets.

@ryanburgess
Created January 7, 2014 01:16
Show Gist options
  • Select an option

  • Save ryanburgess/8293082 to your computer and use it in GitHub Desktop.

Select an option

Save ryanburgess/8293082 to your computer and use it in GitHub Desktop.
JavaScript remove whitespace from a string.
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