收集.js | get()函数
get()函数用于返回存在于特定键处的值。在 JavaScript 中,首先将数组转换为集合,然后将函数应用于集合。
句法:
data.get('key')
参数:此函数接受如上所述和如下所述的单个参数:
返回值:返回提到的键的值。
下面的示例说明了 collect.js 中的get()函数:
示例 1:在此示例中,我们获取一个集合,然后使用 get()函数,它使用键返回值。
// It is used to import collect.js library
const collect = require('collect.js');
const collection = collect({
firstname: 'Jhon',
lastname: 'Carter',
});
console.log(collection.get('firstname'));
输出:
Jhon
示例 2:如果键值不存在,则返回 null。
// It is used to import collect.js library
const collect = require('collect.js');
const collection = collect({
firstname: 'Jhon',
lastname: 'Carter',
});
console.log(collection.get('middlename'));
输出:
null
示例 3:
// It is used to import collect.js library
const collect = require('collect.js');
const collection = collect(['a', 'b', 'c']);
console.log(collection.get(2));
输出:
c
参考: https://collect.js.org/api/get.html