Array 和 Array.prototype

Posted ZJTL

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Array 和 Array.prototype相关的知识,希望对你有一定的参考价值。

定义

Array 对象是用于构造数组的全局对象,数组是类似于列表的高阶对象。

Array.prototype 属性表示Array构造函数的原型,并允许您向所有Array对象添加新的属性和方法。

获取相应的属性名称
 Object.getOwnPropertyNames(Array)
//[ "length", "name", "prototype", "isArray", "from", "of" ]

Object.getOwnPropertyNames(Array.prototype)
//[ "length", "constructor", "concat", "copyWithin", "fill", "find", "findIndex", "pop", "push",
 "reverse", "shift", "unshift", "slice", "sort", "splice", "includes", "indexOf", "keys", "entries",
 "forEach", "filter", "map", "every", "some", "reduce", "reduceRight", "toString", "toLocaleString", 
"join", "lastIndexOf", "values", "flat", "flatMap" ]
Array是一个function对象,是JS的内置对象。js中所有的数组方法均来自于Array.prototype,和其他构造函数一样,你可以通过扩展Array的prototype属性上的方法来给所有数组实例增加方法

用法

给Array对象添加新的方法

Array.prototype.duplicator = function() {
  let s = this.concat(this) 
     return s
  }
}
let t
= [1,2,3,4,5].duplicator()
console.log(t)
// [1, 2, 3, 4, 5, 1, 2, 3, 4, 5]

 

 

以上是关于Array 和 Array.prototype的主要内容,如果未能解决你的问题,请参考以下文章

理解Array.prototype.fill和Array.from

Array 和 Array.prototype

Array.prototype.includes 与 Array.prototype.indexOf

Array.prototype.myfindIndex

...var 在 Array​.prototype​.map() 上的含义是啥 [重复]

Array.prototype.push.apply(a,b)和Array.prototype.slice.call(arguments)