坚强戒指

文章
3
资源
0
加入时间
3年0月21天

把arguments转换为数组

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