javascript array.property.slice.call

 

 

function foo()
{
  //var var1=Array.prototype.slice.call(arguments);
  var var1=[].slice.call(arguments);
  console.log(var1.length);
}




foo(0,1,2,3,4,5,6);

 

posted @ 2015-04-23 16:49  zyip  阅读(332)  评论(0编辑  收藏  举报