收集.js | collapse() 方法
Collect.js是用于处理数组和对象的流畅且方便的包装器。 JavaScript 数组首先转换为集合,然后将函数应用于集合。
collapse() 方法将数组集合转换为单个平面数组。
安装:
- Collect.js 可以通过 NPM 安装:
npm install --save collect.js
- 你也可以使用collect.js的CDN
句法:
collect(array).collapse()
参数: collect() 接受一个转换为集合的参数,然后对其应用 collapse()函数,该函数将转换为单个平面数组。
返回值:返回一个数组。
下面的示例说明了 JavaScript 中的collapse() 方法:
示例 1:这里使用 collect = require('collect.js') 将 collect.js 库导入文件中。
const collect = require('collect.js');
let arr = [1, [1, 2], [{}, 3]]
// convert array into collection
const collection = collect(arr);
// collapsing the array into single array
const collapased = collection.collapse();
// returning the array with all() method.
let singleArray = collapased.all();
console.log("Single array: ", singleArray);
输出
示例 2:
const collect = require('collect.js');
let arr = [[1, 2, 3, 4], [5, 6, 7, 8], [9, 10]]
// convert array into collection
const collection = collect(arr);
// collapsing the array into single array
const collapased = collection.collapse();
// returning the array with all() method.
let singleArray = collapased.all();
console.log("Single array: ", singleArray);
输出