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

类数组

时间:2018-12-30 21:58:26      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:索引   get   array   style   ++   color   阿里巴巴   原理   func   

var obj = {
    ‘0‘ : ‘a‘,
    ‘1‘ : ‘b‘,
    ‘2‘ : ‘c‘,
    ‘length‘ : 3,
    ‘push‘ : Array.prototype.push
}    

类数组:1、属性必须以索引(数字)为属性名

    2、需要要有length属性名

            3、最好加上push方法

类数组push的内部原理

Array.prototype.push = function(target){
    this[this.length] = target;
    this.length ++;    
}

阿里巴巴题目

var obj = {
    ‘2‘ : ‘a‘,
    ‘3‘ : ‘b‘,
    ‘length‘ : 2,
    ‘push‘ :Array.prototype.push
}

obj.push(‘c‘);
obj.push(‘d‘);
最后这个obj长什么样子?    

var obj = {
    ‘2‘ : ‘c‘,

    ‘3‘ : ‘d‘,

    length : 4
}

类数组

标签:索引   get   array   style   ++   color   阿里巴巴   原理   func   

原文地址:https://www.cnblogs.com/reddong/p/10200603.html

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