Monday, November 21, 2016

Array.prototype.slice.call()

Array.prototype.slice.call()能将具有length属性的对象转成数组
Array.prototype.slice.call(arguments)能够将arguments转成数组,那么就是 arguments.toArray().slice();
是不是就可以说Array.prototype.slice.call(arguments)的过程就是先将传入进来的第一个参数转为数组,再调用slice?

1 var a={length:2,0:'first',1:'second'};
2 Array.prototype.slice.call(a);//  ["first", "second"]
3  
4 var a={length:2};
5 Array.prototype.slice.call(a);//  [undefined, undefined]

http://www.cnblogs.com/littledu/archive/2012/05/19/2508672.html 
Array.prototype.slice.call(arguments,0);
Array.prototype.slice.call("abcd",0);
http://blog.chinaunix.net/uid-26672038-id-3336525.html 

(slice有两个用法,一个是String.slice,一个是Array.slice,
第一个返回的是字符串,第二个返回的是数组,这里我们看第2个。) 

No comments:

Post a Comment