Array.prototype.push argument
标签:
JavaScript
https://www.zhihu.com/question/28467444
https://zhidao.baidu.com/question/1116157600709662699.html
https://www.jianshu.com/p/39ba41ead42e
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
</body>
</html>
<script>
var arr = [1,2,3];
Array.prototype.push=function(){
for(var i=0;i<arguments.length;i++){
//this[3]=arguments[0];
//this[4]=arguments[1];
//this[5]=arguments[2];
this[this.length]=arguments[i];
}
}
arr.push(8,9,10);
console.log(arr);
</script>
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦