实例
一个新的数组的方法,将数组值转为大写:
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();
fruits 数组现在的值为:
BANANA,ORANGE,APPLE,MANGO