Collect.js flatten() 方法
Collect.js是一个用于处理数组和对象的包装库,它无依赖且易于使用。 flatten()方法用于将多维集合展平为单维集合,并返回展平后的单维集合元素。
句法:
collect(array).flatten()
参数: collect()方法接受一个参数,该参数转换为集合,然后对其应用 flatten() 方法。
返回值:该方法返回展平的一维集合元素。
示例 1:下面的示例说明了collect.js中的flatten()方法
HTML
const collect = require('collect.js');
let obj = [
{
name: 'Rahul',
score: 98,
},
{
name: 'Aditya',
score: 96,
},
{
name: 'Abhishek',
score: 80
}
];
const collection = collect(obj);
const flatten_Val = collection.flatten(1);
console.log(flatten_Val.all());
html
const collect = require('collect.js');
let arr = [
['Geeks', 'GFG', 'GeeksforGeeks'],
[10, 20, 30, 40, 50]
];
const collection = collect(arr);
const flatten_Val = collection.flatten(1);
console.log(flatten_Val.all());
输出:
[ 'Rahul', 98, 'Aditya', 96, 'Abhishek', 80 ]
示例 2:
html
const collect = require('collect.js');
let arr = [
['Geeks', 'GFG', 'GeeksforGeeks'],
[10, 20, 30, 40, 50]
];
const collection = collect(arr);
const flatten_Val = collection.flatten(1);
console.log(flatten_Val.all());
输出:
[ 'Geeks', 'GFG', 'GeeksforGeeks', 10, 20, 30, 40, 50 ]