Skip to content

Instantly share code, notes, and snippets.

@DKunin
Created October 14, 2013 11:24
Show Gist options
  • Save DKunin/6974214 to your computer and use it in GitHub Desktop.
Save DKunin/6974214 to your computer and use it in GitHub Desktop.
Form words from array
function formatWords(words){
if (!words) return "";
return words.filter(function(a) { return a !== ''}).join(', ').replace(/(, )+(\S+)$/, ' and $2');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment