Skip to content

Instantly share code, notes, and snippets.

@heartcode
Last active December 26, 2015 12:59
Show Gist options
  • Save heartcode/7155549 to your computer and use it in GitHub Desktop.
Save heartcode/7155549 to your computer and use it in GitHub Desktop.
Useful set of JavaScript snippets
// Replace extra spaces with single ones and get rid of any spaces at the end and beginning of the string.
var s = " too much trailing space "
s = s.replace(/^(\s*)|(\s*)$/g, '').replace(/\s+/g, ' ');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment