码迷,mamicode.com
首页 > 移动开发 > 详细

Array.prototype.push.apply

时间:2017-05-14 10:24:24      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:prototype   tail   apply   var   blog   push   ==   http   detail   

Array.prototype.push.apply(a,b) || a.push.apply(a,b);
var a=[1,2,3],b=[4,5,6];
Array.prototype.push.apply(a,b) 
a===[1, 2, 3, 4, 5, 6]
b===[4, 5, 6]

http://blog.csdn.net/maoguiyou/article/details/51433551

Array.prototype.push.apply

标签:prototype   tail   apply   var   blog   push   ==   http   detail   

原文地址:http://www.cnblogs.com/wulinwulin/p/6851051.html

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