阅读:185
评论:0
阅读:118
评论:4
阅读:140
评论:0
阅读:124
评论:0
阅读:173
评论:0
function f(a,b,c){ console.log(a,b,c);} f.apply(null,{0:123,1:456,2:789,length:2});//123 456 undefined ,因为 length 属性值为2,值只传入了 2 个参数 f.apply(null,{10:123,11:456,12:789,length:3});// undefined undefined undefined , 因为参数对象不存在以 0、1、2 为...
阅读:240
评论:0
阅读:111
评论:0
阅读:163
评论:0
阅读:525
评论:0
阅读:287
评论:0