```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>为js内置对象添加原型函数</title>
</head>
<body>
<script type="text/javascript">
// 为String对象添加一个倒序字符串的原型函数
String.prototype.myReverse = function() {
for(var i=this.length-1; i>=0; i--) {
console.log(this[i]);
}
}
var str = "abcdefg";
console.log(str); // abcdef
str.myReverse(); // gfedcba
console.log(str); // abcdef
// 为数组对象添加一个倒序的原型函数
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, 3, 56, 78, 23, 10];
arr.mySort(); // 改变了原来的数组
console.log(arr);
</script>
</body>
</html>
```
- js应用场景
- js组成
- js书写位置
- 浮点数精度问题
- undefined与null的区别
- 数据类型转换
- 运算符优先级
- 代码调试
- 函数
- 函数的定义和调用
- 函数的return细节
- 函数是一种数据类型
- this的指向
- 函数成员
- 函数闭包
- 作用域
- 预解析
- js对象
- 对象的创建与调用
- new关键字
- this关键字
- 构造函数创建对象
- 事件
- 数据类型
- 继承
- 杂项
- 如何阻止标签的默认行为
- 为一个标签绑定或移除任何一个事件
- 如何阻止事件的冒泡行为
- 事件的三个阶段
- 移动元素的条件
- 匀速动画函数封装
- 变速动画函数封装
- 获取元素的css属性值
- 数据类型判断方法
- 创建对象的7种写法
- 如何继承
- 为js内置对象添加原型函数
- 将局部变量转换为全局变量
- call函数的用法
- 沙箱
- 浅拷贝
- 深拷贝
- 对象赋值会改变对象
- 解析URL中的字符串
- 格式化日期
- 获取当前浏览器类型
- Vue3.x
- 调式工具Vue Devtools