欢迎来到码农权的博客 MaNongGeG|

类数组

什么是类数组

  • 它首先是一个对象,其次与数组相似,它拥有 length 属性,但却不能使用数组的方法(Array.prototype)。只要一个对象Object,拥有 length 属性,那它就是一个类数组对象。

类数组的特性

  • 属性要为索引(数字属性),必须有length属性,最好加上push
  Array.prototype.push = function (target) {
    this[this.length] = target;
    this.length ++;
  }
  let obj = {
    "0": 'a',
    "1": 'b',
    "2": 'c',
    length: 3,
    push: Array.prototype.push,
    splice: Array.prototype.splice
  }

本文作者:HuangBingQuan

本文链接:https://www.cnblogs.com/bingquan1/p/15991985.html

版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。

posted @   HuangBingQuan  阅读(218)  评论(0编辑  收藏  举报
点击右上角即可分享
微信分享提示
评论
收藏
关注
推荐
深色
回顶
收起
  1. 1 不将就 码农权
  2. 2 Bleeding Love 码农权
  3. 3 想你念你 码农权
Bleeding Love - 码农权
00:00 / 00:00
An audio error has occurred, player will skip forward in 2 seconds.

Not available