-
Notifications
You must be signed in to change notification settings - Fork 213
/
demo.js
34 lines (29 loc) · 1.01 KB
/
demo.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// 为数组添加一个split方法
// @1直接修改原型
Array.prototype.split = function(i) {
return [this.slice(0, i), this.slice(i)]
};
var a = [1, 2, 3, 4];
console.log(a.split(2)); // [ [ 1, 2 ], [ 3, 4 ] ]
// @2可以通过使用一个函数包裹这个方法,然后导出,让开发者自己决定是否修改原型
function addSplitToArray() {
Array.prototype.split = function(i) {
return [this.slice(0, i), this.slice(i)]
};
}
addSplitToArray(); // 函数执行之后我们就可以使用上面的方法了。
// 为不支持map函数的array环境添加这个方法
if('function' !== typeof Array.prototype.map) {
Array.prototype.map = function(fn, thisArg) {
var result = [];
for(var i = 0; i < this.length; i++) {
result[i] = fn.call(thisArg, this[i], i);
}
return result;
}
}
// 将上面的 !== 修改为 === 就可以测试我们的方法了
var b = a.map(function(cur, index) {
return ++cur;
});
console.log(b); // [ 2, 3, 4, 5 ]