Skip to content

Instantly share code, notes, and snippets.

@jswhisperer
Created November 30, 2013 08:00
Show Gist options
  • Select an option

  • Save jswhisperer/7716528 to your computer and use it in GitHub Desktop.

Select an option

Save jswhisperer/7716528 to your computer and use it in GitHub Desktop.
Hipster Hack: String Joins
['first', 'name'].join(' '); // = 'first name';
['milk', 'coffee', 'suger'].join(', '); // = 'milk, coffee, suger'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment