Demo - 数组拓展:http://a-1.vip/demo/ele
```
var arr = [{
nome: 'abc',
a: '1',
b: '2',
c: '1',
'年龄': 22
}, {
nome: 'def',
a: '1',
b: '1',
c: '3',
'年龄': 25
}, {
nome: 'gh',
a: '2',
b: '1',
c: '3',
'年龄': 18
}];
// ······································································
// 遍历数组:(成员,索引值,数组自身)
arr.forEach(function(ele, index, self) {
console.log(this); // 打印为 []
console.log(ele, index, self);
}, []);
// ·······················
// 遍历数组·原型、
Array.prototype.myFor = function(fun) {
var _this = arguments[1] || window; // 如果传入第二的参数就改变为作用域、
for (var i = 0; i < this.length; i++) {
fun.apply(_this, [this[i], i, this]);
}
};
// ······································································
// 数组过滤:(成员,索引值,数组自身)
// 根据返回值:true、false 决定去、留;
var newArr = arr.filter(function(ele, index, self) {
return ele.a == 1;
});
console.log(newArr);
// ·······················
// 数组过滤·原型、
Array.prototype.myFilter = function(fun) {
var arr = [];
var _this = arguments[1] || window; // 如果传入第二的参数就改变为作用域、
for (var i = 0; i < this.length; i++) {
fun.apply(_this, [this[i], i, this]) && arr.push(this[i]);
}
return arr;
};
// ······································································
// 映射数组:(成员,索引值,数组自身) 根据返回值:改变数组成员的数据、
var newArr = arr.map(function(ele, index, self) {
ele.a += ' new'; // 这样会改变原数组、
return ele.a;
});
// 注意:arr != newArr
console.log(newArr); // ["1 new", "1 new", "2 new"]
console.log(arr[0]); // Object {nome: "abc", a: "1 new", b: "2", c: "1"}
// ·······················
// 映射数组·原型
Array.prototype.myMap = function(fun) {
var arr = [],
_this = arguments[1] || window;
for (var i = 0; i < this.length; i++) {
arr.push(fun.apply(_this, [this[i], i, this]));
}
return arr;
};
// ······································································
// 对一组数据(数组)进行判断,返回true/false
// 所有成员都满足条件才会返回true,只要有一个成员不满足指定的条件就返回false 并终止数组的遍历。
var flag = arr.every(function(ele, index, self) {
return ele['年龄'] >= 20;
});
console.log(flag); //false
// ·······················
// 判断(筛选)数组·原型
Array.prototype.myEvery = function(fun) {
var flag = true,
_this = arguments[1] || window;
for (var i = 0; i < this.length; i++) {
if (!fun.apply(this, [this[i], i, this])) {
return false;
}
}
return flag;
};
// ······································································
Array.prototype.some() -- 与Array.prototype.every()相反
// 对一组数据(数组)进行判断,返回true/false
// 所有成员都满足条件才会返回false,只要有一个成员返回true,就返回true 并终止数组的遍历。
```
- 前端工具库
- HTML
- CSS
- 实用样式
- JavaScript
- 模拟运动
- 深入数组扩展
- JavaScript_补充
- jQuery
- 自定义插件
- 网络 · 后端请求
- css3.0 - 2019-2-28
- 选择器
- 边界样式
- text 字体系列
- 盒子模型
- 动图效果
- 其他
- less - 用法
- scss - 用法 2019-9-26
- HTML5 - 2019-3-21
- canvas - 画布
- SVG - 矢量图
- 多媒体类
- H5 - 其他
- webpack - 自动化构建
- webpack - 起步
- webpack -- 环境配置
- gulp
- ES6 - 2019-4-21
- HTML5补充 - 2019-6-30
- 微信小程序 2019-7-8
- 全局配置
- 页面配置
- 组件生命周期
- 自定义组件 - 2019-7-14
- Git 基本操作 - 2019-7-16
- vue框架 - 2019-7-17
- 基本使用 - 2019-7-18
- 自定义功能 - 2019-7-20
- 自定义组件 - 2019-7-22
- 脚手架的使用 - 2019-7-25
- vue - 终端常用命令
- Vue Router - 路由 (基础)
- Vue Router - 路由 (高级)
- 路由插件配置 - 2019-7-29
- 路由 - 一个实例
- VUEX_数据仓库 - 2019-8-2
- Vue CLI 项目配置 - 2019-8-5
- 单元测试 - 2019-8-6
- 挂载全局组件 - 2019-11-14
- React框架
- React基本使用
- React - 组件化 2019-8-25
- React - 组件间交互 2019-8-26
- React - setState 2019-11-19
- React - slot 2019-11-19
- React - 生命周期 2019-8-26
- props属性校验 2019-11-26
- React - 路由 2019-8-28
- React - ref 2019-11-26
- React - Context 2019-11-27
- PureComponent - 性能优化 2019-11-27
- Render Props VS HOC 2019-11-27
- Portals - 插槽 2019-11-28
- React - Event 2019-11-29
- React - 渲染原理 2019-11-29
- Node.js
- 模块收纳
- dome
- nodejs - tsconfig.json
- TypeScript - 2020-3-5
- TypeScript - 基础 2020-3-6
- TypeScript - 进阶 2020-3-9
- Ordinary小助手
- uni-app
- 高德地图api
- mysql
- EVENTS
- 笔记
- 关于小程序工具方法封装
- Tool/basics
- Tool/web
- parsedUrl
- request