Skip to content

Instantly share code, notes, and snippets.

@lunaroja
Created April 18, 2013 22:57
Show Gist options
  • Save lunaroja/5416887 to your computer and use it in GitHub Desktop.
Save lunaroja/5416887 to your computer and use it in GitHub Desktop.
quickly grab and array and log out a cleaned version of the text for urls or other sorts
for (var i = 0; i < copy.length; i++) {
console.log(copy[i].toLowerCase().replace(/[^\w\s]/gi, '').replace(/\s+/g, '-'));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment