arguments对象转换成一个数组最好的办法就是 Array.prototype.slice.call
function y(){ var args = Array.prototype.slice.call(arguments); }