The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
var     arg = x;
var arg2    = y;

var CONCAT_ARGUMENTS_BUGGY = (function() {
    return [].concat(arguments)[0][0] !== 1;
})( 1, do_somthing(do_something_else( arg, arg2 ), arg1) );

if (CONCAT_ARGUMENTS_BUGGY) arrayProto.concat = concat;