把arguments转换为数组
笔试遇到的题目,记录一下把arguments转换为数组的方法 console.log(arguments instanceof Array);//falsevar argsArray=Array.prototype.slice.call(arguments);console.log(argsArray instanceof Array);//true方法就是Array.pr...