Skip to content

Instantly share code, notes, and snippets.

@andregoncalves
Last active November 18, 2017 12:01
Show Gist options
  • Save andregoncalves/71953 to your computer and use it in GitHub Desktop.
Save andregoncalves/71953 to your computer and use it in GitHub Desktop.
trim string in javascript
var trimmed = str.replace(/^\s+|\s+$/g, '');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment