📜  Collect.js 宏() 方法

📅  最后修改于: 2022-05-13 01:56:44.316000             🧑  作者: Mango

Collect.js 宏() 方法

macro() 方法用于注册自定义方法。此方法使用自定义函数。

句法:

collect(array).macro()

参数: collect() 方法采用一个参数,该参数转换为集合,然后对其应用 macro() 方法。

返回值:此方法返回集合键。

下面的示例说明了 collect.js 中的 macro() 方法:

示例 1:

Javascript
const collect = require('collect.js');
  
collect().macro('even', function () {
    return this.map(element => element % 2 == 0);
});
  
const arr = [2, 3, 5, 6, 8, 9, 10, 12, 13, 16];
  
const collection = collect(arr);
  
console.log(collection.even());


Javascript
const collect = require('collect.js');
  
collect().macro('uppercase', function () {
    return this.map(element => element.toUpperCase());
});
  
const arr = ['gfg', 'geeks', 'GeeksforGeeks'];
  
const collection = collect(arr);
  
console.log(collection.uppercase());


输出:

Collection {
  items: [
    true, false, false,
    true, true,  false,
    true, true,  false,
    true
  ]
}

示例 2:

Javascript

const collect = require('collect.js');
  
collect().macro('uppercase', function () {
    return this.map(element => element.toUpperCase());
});
  
const arr = ['gfg', 'geeks', 'GeeksforGeeks'];
  
const collection = collect(arr);
  
console.log(collection.uppercase());

输出:

Collection { items: [ 'GFG', 'GEEKS', 'GEEKSFORGEEKS' ] }