Updated 2008.01.28: Great idea from Marc and Hendrik. Very slick.
12345678
functionconcatenate(){// return arguments.join(''); // won't work. arguments is not a real array.// return [].splice.call(arguments,0).join(''); // old 'n bustedreturnArray.prototype.join.call(arguments,'');// new hotness}concatenate('good',2,'go');// ==> 'good2go'