码迷,mamicode.com
首页 > 编程语言 > 详细

【javascript】——类数组

时间:2020-01-05 09:18:53      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:targe   属性   strong   ++   数组   length   style   function   cti   

var obj = {
  "2": "a",
  "3": "b",
  "length": 2,
  "push": Array.prototype.push
}
//属性要为索引(数字)属性,必须有length属性,最好加上push

//push 相当于这样
// Array.prototype.push = function (target){
//   obj[obj.length] = target;
//   obj.length ++;
// }

【javascript】——类数组

标签:targe   属性   strong   ++   数组   length   style   function   cti   

原文地址:https://www.cnblogs.com/hjysunshine/p/12151460.html

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