码迷,mamicode.com
首页 > 其他好文 > 详细

内置对象Array的原型对象中添加方法

时间:2018-12-04 22:23:00      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:原型   ring   type   ons   字符   mys   length   prototype   rev   

// //倒序字符串的方法
String.prototype.myReverse=function () {
for(var i=this.length-1;i>=0;i--){
console.log(this[i]);
}
};
var str="1234567";
str.myReverse();

//为内置对象Array的原型对象中添加方法
Array.prototype.mySort=function () {
for(var i=0;i<this.length-1;i++){
for(var j=0;j<this.length-1-i;j++){
if(this[j]<this[j+1]){
var temp=this[j];
this[j]=this[j+1];
this[j+1]=temp;
}
}
}
};
var arr=[100,30,40,200,50,80,60,7];
arr.mySort();
console.log(arr);

内置对象Array的原型对象中添加方法

标签:原型   ring   type   ons   字符   mys   length   prototype   rev   

原文地址:https://www.cnblogs.com/lujieting/p/10066997.html

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