码迷,mamicode.com
首页 > 编程语言 > 详细

将arguments转为数组

时间:2017-05-12 15:34:48      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:type   prototype   argument   cal   数组   var   bsp   console   ice   

function foo1(){var s=Array.prototype.slice.apply(arguments);console.log(arguments);console.log(s); console.log(s instanceof Array);}

或者

function foo1(){var s=Array.prototype.slice.call(arguments);console.log(arguments);console.log(s); console.log(s instanceof Array);}

 

将arguments转为数组

标签:type   prototype   argument   cal   数组   var   bsp   console   ice   

原文地址:http://www.cnblogs.com/jcbo/p/6845566.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!