JavaScript Array prototype 属性
Array.prototype 属性允许我们向对象添加属性和方法
当构建一个属性,所有的数组将被设置属性,它是默认值
在构建一个方法时,所有的数组都可以使用该方法
Array.prototype 单独不能引用数组, Array() 对象可以
浏览器支持
支持 | 支持 | 支持 | 支持 | 支持 |
语法
Array.prototype.name = value
范例
一个新的数组的方法,将数组值转为大写
Array.prototype.myUcase=function() { for (i=0;i<this.length;i++) { this[i]=this[i].toUpperCase(); } }
创建一个数组,然后调用 myUcase 方法
var fruits=["Banana","Orange","Apple","Mango"]; fruits.myUcase();