Skip to content

Instantly share code, notes, and snippets.

@sarfraznawaz2005
Last active October 12, 2015 18:31
Show Gist options
  • Save sarfraznawaz2005/f18ec9079c2343ecfb2f to your computer and use it in GitHub Desktop.
Save sarfraznawaz2005/f18ec9079c2343ecfb2f to your computer and use it in GitHub Desktop.
Concatenate
function concatenate(){
// return arguments.join(''); // won't work. arguments is not a real array.
// return [].splice.call(arguments,0).join(''); // old 'n busted
return Array.prototype.join.call(arguments,''); // new hotness
}
concatenate('good',2,'go');
// ==> 'good2go'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment